home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / ViePratique / maxicompte / maxicompte.exe / {app} / System.Data.SQLite.xml < prev    next >
Extensible Markup Language  |  2014-09-06  |  705KB  |  13,535 lines

  1. <?xml version="1.0"?>
  2. <doc>
  3.     <assembly>
  4.         <name>System.Data.SQLite</name>
  5.     </assembly>
  6.     <members>
  7.         <member name="T:System.Data.SQLite.AssemblySourceIdAttribute">
  8.             <summary>
  9.             Defines a source code identifier custom attribute for an assembly
  10.             manifest.
  11.             </summary>
  12.         </member>
  13.         <member name="M:System.Data.SQLite.AssemblySourceIdAttribute.#ctor(System.String)">
  14.             <summary>
  15.             Constructs an instance of this attribute class using the specified
  16.             source code identifier value.
  17.             </summary>
  18.             <param name="value">
  19.             The source code identifier value to use.
  20.             </param>
  21.         </member>
  22.         <member name="P:System.Data.SQLite.AssemblySourceIdAttribute.SourceId">
  23.             <summary>
  24.             Gets the source code identifier value.
  25.             </summary>
  26.         </member>
  27.         <member name="T:System.Data.SQLite.AssemblySourceTimeStampAttribute">
  28.             <summary>
  29.             Defines a source code time-stamp custom attribute for an assembly
  30.             manifest.
  31.             </summary>
  32.         </member>
  33.         <member name="M:System.Data.SQLite.AssemblySourceTimeStampAttribute.#ctor(System.String)">
  34.             <summary>
  35.             Constructs an instance of this attribute class using the specified
  36.             source code time-stamp value.
  37.             </summary>
  38.             <param name="value">
  39.             The source code time-stamp value to use.
  40.             </param>
  41.         </member>
  42.         <member name="P:System.Data.SQLite.AssemblySourceTimeStampAttribute.SourceTimeStamp">
  43.             <summary>
  44.             Gets the source code time-stamp value.
  45.             </summary>
  46.         </member>
  47.         <member name="T:System.Data.SQLite.SQLiteLogCallback">
  48.              <summary>
  49.              This is the method signature for the SQLite core library logging callback
  50.              function for use with sqlite3_log() and the SQLITE_CONFIG_LOG.
  51.             
  52.              WARNING: This delegate is used more-or-less directly by native code, do
  53.                       not modify its type signature.
  54.              </summary>
  55.              <param name="pUserData">
  56.              The extra data associated with this message, if any.
  57.              </param>
  58.              <param name="errorCode">
  59.              The error code associated with this message.
  60.              </param>
  61.              <param name="pMessage">
  62.              The message string to be logged.
  63.              </param>
  64.         </member>
  65.         <member name="T:System.Data.SQLite.SQLite3">
  66.             <summary>
  67.             This class implements SQLiteBase completely, and is the guts of the code that interop's SQLite with .NET
  68.             </summary>
  69.         </member>
  70.         <member name="T:System.Data.SQLite.SQLiteBase">
  71.             <summary>
  72.             This internal class provides the foundation of SQLite support.  It defines all the abstract members needed to implement
  73.             a SQLite data provider, and inherits from SQLiteConvert which allows for simple translations of string to and from SQLite.
  74.             </summary>
  75.         </member>
  76.         <member name="T:System.Data.SQLite.SQLiteConvert">
  77.             <summary>
  78.             This base class provides datatype conversion services for the SQLite provider.
  79.             </summary>
  80.         </member>
  81.         <member name="F:System.Data.SQLite.SQLiteConvert.FallbackDefaultDbType">
  82.             <summary>
  83.             The fallback default database type when one cannot be obtained from an
  84.             existing connection instance.
  85.             </summary>
  86.         </member>
  87.         <member name="F:System.Data.SQLite.SQLiteConvert.FullFormat">
  88.             <summary>
  89.             The format string for DateTime values when using the InvariantCulture or CurrentCulture formats.
  90.             </summary>
  91.         </member>
  92.         <member name="F:System.Data.SQLite.SQLiteConvert.FallbackDefaultTypeName">
  93.             <summary>
  94.             The fallback default database type name when one cannot be obtained from
  95.             an existing connection instance.
  96.             </summary>
  97.         </member>
  98.         <member name="F:System.Data.SQLite.SQLiteConvert.UnixEpoch">
  99.             <summary>
  100.             The value for the Unix epoch (e.g. January 1, 1970 at midnight, in UTC).
  101.             </summary>
  102.         </member>
  103.         <member name="F:System.Data.SQLite.SQLiteConvert.OleAutomationEpochAsJulianDay">
  104.             <summary>
  105.             The value of the OLE Automation epoch represented as a Julian day.
  106.             </summary>
  107.         </member>
  108.         <member name="F:System.Data.SQLite.SQLiteConvert._datetimeFormats">
  109.             <summary>
  110.             An array of ISO-8601 DateTime formats that we support parsing.
  111.             </summary>
  112.         </member>
  113.         <member name="F:System.Data.SQLite.SQLiteConvert._datetimeFormatUtc">
  114.             <summary>
  115.             The internal default format for UTC DateTime values when converting
  116.             to a string.
  117.             </summary>
  118.         </member>
  119.         <member name="F:System.Data.SQLite.SQLiteConvert._datetimeFormatLocal">
  120.             <summary>
  121.             The internal default format for local DateTime values when converting
  122.             to a string.
  123.             </summary>
  124.         </member>
  125.         <member name="F:System.Data.SQLite.SQLiteConvert._utf8">
  126.             <summary>
  127.             An UTF-8 Encoding instance, so we can convert strings to and from UTF-8
  128.             </summary>
  129.         </member>
  130.         <member name="F:System.Data.SQLite.SQLiteConvert._datetimeFormat">
  131.             <summary>
  132.             The default DateTime format for this instance.
  133.             </summary>
  134.         </member>
  135.         <member name="F:System.Data.SQLite.SQLiteConvert._datetimeKind">
  136.             <summary>
  137.             The default DateTimeKind for this instance.
  138.             </summary>
  139.         </member>
  140.         <member name="F:System.Data.SQLite.SQLiteConvert._datetimeFormatString">
  141.             <summary>
  142.             The default DateTime format string for this instance.
  143.             </summary>
  144.         </member>
  145.         <member name="M:System.Data.SQLite.SQLiteConvert.#ctor(System.Data.SQLite.SQLiteDateFormats,System.DateTimeKind,System.String)">
  146.             <summary>
  147.             Initializes the conversion class
  148.             </summary>
  149.             <param name="fmt">The default date/time format to use for this instance</param>
  150.             <param name="kind">The DateTimeKind to use.</param>
  151.             <param name="fmtString">The DateTime format string to use.</param>
  152.         </member>
  153.         <member name="M:System.Data.SQLite.SQLiteConvert.ToUTF8(System.String)">
  154.             <summary>
  155.             Converts a string to a UTF-8 encoded byte array sized to include a null-terminating character.
  156.             </summary>
  157.             <param name="sourceText">The string to convert to UTF-8</param>
  158.             <returns>A byte array containing the converted string plus an extra 0 terminating byte at the end of the array.</returns>
  159.         </member>
  160.         <member name="M:System.Data.SQLite.SQLiteConvert.ToUTF8(System.DateTime)">
  161.             <summary>
  162.             Convert a DateTime to a UTF-8 encoded, zero-terminated byte array.
  163.             </summary>
  164.             <remarks>
  165.             This function is a convenience function, which first calls ToString() on the DateTime, and then calls ToUTF8() with the
  166.             string result.
  167.             </remarks>
  168.             <param name="dateTimeValue">The DateTime to convert.</param>
  169.             <returns>The UTF-8 encoded string, including a 0 terminating byte at the end of the array.</returns>
  170.         </member>
  171.         <member name="M:System.Data.SQLite.SQLiteConvert.ToString(System.IntPtr,System.Int32)">
  172.             <summary>
  173.             Converts a UTF-8 encoded IntPtr of the specified length into a .NET string
  174.             </summary>
  175.             <param name="nativestring">The pointer to the memory where the UTF-8 string is encoded</param>
  176.             <param name="nativestringlen">The number of bytes to decode</param>
  177.             <returns>A string containing the translated character(s)</returns>
  178.         </member>
  179.         <member name="M:System.Data.SQLite.SQLiteConvert.UTF8ToString(System.IntPtr,System.Int32)">
  180.             <summary>
  181.             Converts a UTF-8 encoded IntPtr of the specified length into a .NET string
  182.             </summary>
  183.             <param name="nativestring">The pointer to the memory where the UTF-8 string is encoded</param>
  184.             <param name="nativestringlen">The number of bytes to decode</param>
  185.             <returns>A string containing the translated character(s)</returns>
  186.         </member>
  187.         <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.String)">
  188.             <summary>
  189.             Converts a string into a DateTime, using the DateTimeFormat, DateTimeKind,
  190.             and DateTimeFormatString specified for the connection when it was opened.
  191.             </summary>
  192.             <remarks>
  193.             Acceptable ISO8601 DateTime formats are:
  194.             <list type="bullet">
  195.             <item><description>THHmmssK</description></item>
  196.             <item><description>THHmmK</description></item>
  197.             <item><description>HH:mm:ss.FFFFFFFK</description></item>
  198.             <item><description>HH:mm:ssK</description></item>
  199.             <item><description>HH:mmK</description></item>
  200.             <item><description>yyyy-MM-dd HH:mm:ss.FFFFFFFK</description></item>
  201.             <item><description>yyyy-MM-dd HH:mm:ssK</description></item>
  202.             <item><description>yyyy-MM-dd HH:mmK</description></item>
  203.             <item><description>yyyy-MM-ddTHH:mm:ss.FFFFFFFK</description></item>
  204.             <item><description>yyyy-MM-ddTHH:mmK</description></item>
  205.             <item><description>yyyy-MM-ddTHH:mm:ssK</description></item>
  206.             <item><description>yyyyMMddHHmmssK</description></item>
  207.             <item><description>yyyyMMddHHmmK</description></item>
  208.             <item><description>yyyyMMddTHHmmssFFFFFFFK</description></item>
  209.             <item><description>THHmmss</description></item>
  210.             <item><description>THHmm</description></item>
  211.             <item><description>HH:mm:ss.FFFFFFF</description></item>
  212.             <item><description>HH:mm:ss</description></item>
  213.             <item><description>HH:mm</description></item>
  214.             <item><description>yyyy-MM-dd HH:mm:ss.FFFFFFF</description></item>
  215.             <item><description>yyyy-MM-dd HH:mm:ss</description></item>
  216.             <item><description>yyyy-MM-dd HH:mm</description></item>
  217.             <item><description>yyyy-MM-ddTHH:mm:ss.FFFFFFF</description></item>
  218.             <item><description>yyyy-MM-ddTHH:mm</description></item>
  219.             <item><description>yyyy-MM-ddTHH:mm:ss</description></item>
  220.             <item><description>yyyyMMddHHmmss</description></item>
  221.             <item><description>yyyyMMddHHmm</description></item>
  222.             <item><description>yyyyMMddTHHmmssFFFFFFF</description></item>
  223.             <item><description>yyyy-MM-dd</description></item>
  224.             <item><description>yyyyMMdd</description></item>
  225.             <item><description>yy-MM-dd</description></item>
  226.             </list>
  227.             If the string cannot be matched to one of the above formats -OR-
  228.             the DateTimeFormatString if one was provided, an exception will
  229.             be thrown.
  230.             </remarks>
  231.             <param name="dateText">The string containing either a long integer number of 100-nanosecond units since
  232.             System.DateTime.MinValue, a Julian day double, an integer number of seconds since the Unix epoch, a
  233.             culture-independent formatted date and time string, a formatted date and time string in the current
  234.             culture, or an ISO8601-format string.</param>
  235.             <returns>A DateTime value</returns>
  236.         </member>
  237.         <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.String,System.Data.SQLite.SQLiteDateFormats,System.DateTimeKind,System.String)">
  238.             <summary>
  239.             Converts a string into a DateTime, using the specified DateTimeFormat,
  240.             DateTimeKind and DateTimeFormatString.
  241.             </summary>
  242.             <remarks>
  243.             Acceptable ISO8601 DateTime formats are:
  244.             <list type="bullet">
  245.             <item><description>THHmmssK</description></item>
  246.             <item><description>THHmmK</description></item>
  247.             <item><description>HH:mm:ss.FFFFFFFK</description></item>
  248.             <item><description>HH:mm:ssK</description></item>
  249.             <item><description>HH:mmK</description></item>
  250.             <item><description>yyyy-MM-dd HH:mm:ss.FFFFFFFK</description></item>
  251.             <item><description>yyyy-MM-dd HH:mm:ssK</description></item>
  252.             <item><description>yyyy-MM-dd HH:mmK</description></item>
  253.             <item><description>yyyy-MM-ddTHH:mm:ss.FFFFFFFK</description></item>
  254.             <item><description>yyyy-MM-ddTHH:mmK</description></item>
  255.             <item><description>yyyy-MM-ddTHH:mm:ssK</description></item>
  256.             <item><description>yyyyMMddHHmmssK</description></item>
  257.             <item><description>yyyyMMddHHmmK</description></item>
  258.             <item><description>yyyyMMddTHHmmssFFFFFFFK</description></item>
  259.             <item><description>THHmmss</description></item>
  260.             <item><description>THHmm</description></item>
  261.             <item><description>HH:mm:ss.FFFFFFF</description></item>
  262.             <item><description>HH:mm:ss</description></item>
  263.             <item><description>HH:mm</description></item>
  264.             <item><description>yyyy-MM-dd HH:mm:ss.FFFFFFF</description></item>
  265.             <item><description>yyyy-MM-dd HH:mm:ss</description></item>
  266.             <item><description>yyyy-MM-dd HH:mm</description></item>
  267.             <item><description>yyyy-MM-ddTHH:mm:ss.FFFFFFF</description></item>
  268.             <item><description>yyyy-MM-ddTHH:mm</description></item>
  269.             <item><description>yyyy-MM-ddTHH:mm:ss</description></item>
  270.             <item><description>yyyyMMddHHmmss</description></item>
  271.             <item><description>yyyyMMddHHmm</description></item>
  272.             <item><description>yyyyMMddTHHmmssFFFFFFF</description></item>
  273.             <item><description>yyyy-MM-dd</description></item>
  274.             <item><description>yyyyMMdd</description></item>
  275.             <item><description>yy-MM-dd</description></item>
  276.             </list>
  277.             If the string cannot be matched to one of the above formats -OR-
  278.             the DateTimeFormatString if one was provided, an exception will
  279.             be thrown.
  280.             </remarks>
  281.             <param name="dateText">The string containing either a long integer number of 100-nanosecond units since
  282.             System.DateTime.MinValue, a Julian day double, an integer number of seconds since the Unix epoch, a
  283.             culture-independent formatted date and time string, a formatted date and time string in the current
  284.             culture, or an ISO8601-format string.</param>
  285.             <param name="format">The SQLiteDateFormats to use.</param>
  286.             <param name="kind">The DateTimeKind to use.</param>
  287.             <param name="formatString">The DateTime format string to use.</param>
  288.             <returns>A DateTime value</returns>
  289.         </member>
  290.         <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.Double)">
  291.             <summary>
  292.             Converts a julianday value into a DateTime
  293.             </summary>
  294.             <param name="julianDay">The value to convert</param>
  295.             <returns>A .NET DateTime</returns>
  296.         </member>
  297.         <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.Double,System.DateTimeKind)">
  298.             <summary>
  299.             Converts a julianday value into a DateTime
  300.             </summary>
  301.             <param name="julianDay">The value to convert</param>
  302.             <param name="kind">The DateTimeKind to use.</param>
  303.             <returns>A .NET DateTime</returns>
  304.         </member>
  305.         <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.Int32,System.DateTimeKind)">
  306.             <summary>
  307.             Converts the specified number of seconds from the Unix epoch into a
  308.             <see cref="T:System.DateTime"/> value.
  309.             </summary>
  310.             <param name="seconds">
  311.             The number of whole seconds since the Unix epoch.
  312.             </param>
  313.             <param name="kind">
  314.             Either Utc or Local time.
  315.             </param>
  316.             <returns>
  317.             The new <see cref="T:System.DateTime"/> value.
  318.             </returns>
  319.         </member>
  320.         <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.Int64,System.DateTimeKind)">
  321.             <summary>
  322.             Converts the specified number of ticks since the epoch into a
  323.             <see cref="T:System.DateTime"/> value.
  324.             </summary>
  325.             <param name="ticks">
  326.             The number of whole ticks since the epoch.
  327.             </param>
  328.             <param name="kind">
  329.             Either Utc or Local time.
  330.             </param>
  331.             <returns>
  332.             The new <see cref="T:System.DateTime"/> value.
  333.             </returns>
  334.         </member>
  335.         <member name="M:System.Data.SQLite.SQLiteConvert.ToJulianDay(System.DateTime)">
  336.             <summary>
  337.             Converts a DateTime struct to a JulianDay double
  338.             </summary>
  339.             <param name="value">The DateTime to convert</param>
  340.             <returns>The JulianDay value the Datetime represents</returns>
  341.         </member>
  342.         <member name="M:System.Data.SQLite.SQLiteConvert.ToUnixEpoch(System.DateTime)">
  343.             <summary>
  344.             Converts a DateTime struct to the whole number of seconds since the
  345.             Unix epoch.
  346.             </summary>
  347.             <param name="value">The DateTime to convert</param>
  348.             <returns>The whole number of seconds since the Unix epoch</returns>
  349.         </member>
  350.         <member name="M:System.Data.SQLite.SQLiteConvert.GetDateTimeKindFormat(System.DateTimeKind,System.String)">
  351.             <summary>
  352.             Returns the DateTime format string to use for the specified DateTimeKind.
  353.             If <paramref name="formatString" /> is not null, it will be returned verbatim.
  354.             </summary>
  355.             <param name="kind">The DateTimeKind to use.</param>
  356.             <param name="formatString">The DateTime format string to use.</param>
  357.             <returns>
  358.             The DateTime format string to use for the specified DateTimeKind.
  359.             </returns>
  360.         </member>
  361.         <member name="M:System.Data.SQLite.SQLiteConvert.ToString(System.DateTime)">
  362.             <summary>
  363.             Converts a string into a DateTime, using the DateTimeFormat, DateTimeKind,
  364.             and DateTimeFormatString specified for the connection when it was opened.
  365.             </summary>
  366.             <param name="dateValue">The DateTime value to convert</param>
  367.             <returns>Either a string containing the long integer number of 100-nanosecond units since System.DateTime.MinValue, a
  368.             Julian day double, an integer number of seconds since the Unix epoch, a culture-independent formatted date and time
  369.             string, a formatted date and time string in the current culture, or an ISO8601-format date/time string.</returns>
  370.         </member>
  371.         <member name="M:System.Data.SQLite.SQLiteConvert.ToString(System.DateTime,System.Data.SQLite.SQLiteDateFormats,System.DateTimeKind,System.String)">
  372.             <summary>
  373.             Converts a string into a DateTime, using the DateTimeFormat, DateTimeKind,
  374.             and DateTimeFormatString specified for the connection when it was opened.
  375.             </summary>
  376.             <param name="dateValue">The DateTime value to convert</param>
  377.             <param name="format">The SQLiteDateFormats to use.</param>
  378.             <param name="kind">The DateTimeKind to use.</param>
  379.             <param name="formatString">The DateTime format string to use.</param>
  380.             <returns>Either a string containing the long integer number of 100-nanosecond units since System.DateTime.MinValue, a
  381.             Julian day double, an integer number of seconds since the Unix epoch, a culture-independent formatted date and time
  382.             string, a formatted date and time string in the current culture, or an ISO8601-format date/time string.</returns>
  383.         </member>
  384.         <member name="M:System.Data.SQLite.SQLiteConvert.ToDateTime(System.IntPtr,System.Int32)">
  385.             <summary>
  386.             Internal function to convert a UTF-8 encoded IntPtr of the specified length to a DateTime.
  387.             </summary>
  388.             <remarks>
  389.             This is a convenience function, which first calls ToString() on the IntPtr to convert it to a string, then calls
  390.             ToDateTime() on the string to return a DateTime.
  391.             </remarks>
  392.             <param name="ptr">A pointer to the UTF-8 encoded string</param>
  393.             <param name="len">The length in bytes of the string</param>
  394.             <returns>The parsed DateTime value</returns>
  395.         </member>
  396.         <member name="M:System.Data.SQLite.SQLiteConvert.Split(System.String,System.Char)">
  397.             <summary>
  398.             Smart method of splitting a string.  Skips quoted elements, removes the quotes.
  399.             </summary>
  400.             <remarks>
  401.             This split function works somewhat like the String.Split() function in that it breaks apart a string into
  402.             pieces and returns the pieces as an array.  The primary differences are:
  403.             <list type="bullet">
  404.             <item><description>Only one character can be provided as a separator character</description></item>
  405.             <item><description>Quoted text inside the string is skipped over when searching for the separator, and the quotes are removed.</description></item>
  406.             </list>
  407.             Thus, if splitting the following string looking for a comma:<br/>
  408.             One,Two, "Three, Four", Five<br/>
  409.             <br/>
  410.             The resulting array would contain<br/>
  411.             [0] One<br/>
  412.             [1] Two<br/>
  413.             [2] Three, Four<br/>
  414.             [3] Five<br/>
  415.             <br/>
  416.             Note that the leading and trailing spaces were removed from each item during the split.
  417.             </remarks>
  418.             <param name="source">Source string to split apart</param>
  419.             <param name="separator">Separator character</param>
  420.             <returns>A string array of the split up elements</returns>
  421.         </member>
  422.         <member name="M:System.Data.SQLite.SQLiteConvert.NewSplit(System.String,System.Char,System.Boolean,System.String@)">
  423.             <summary>
  424.             Splits the specified string into multiple strings based on a separator
  425.             and returns the result as an array of strings.
  426.             </summary>
  427.             <param name="value">
  428.             The string to split into pieces based on the separator character.  If
  429.             this string is null, null will always be returned.  If this string is
  430.             empty, an array of zero strings will always be returned.
  431.             </param>
  432.             <param name="separator">
  433.             The character used to divide the original string into sub-strings.
  434.             This character cannot be a backslash or a double-quote; otherwise, no
  435.             work will be performed and null will be returned.
  436.             </param>
  437.             <param name="keepQuote">
  438.             If this parameter is non-zero, all double-quote characters will be
  439.             retained in the returned list of strings; otherwise, they will be
  440.             dropped.
  441.             </param>
  442.             <param name="error">
  443.             Upon failure, this parameter will be modified to contain an appropriate
  444.             error message.
  445.             </param>
  446.             <returns>
  447.             The new array of strings or null if the input string is null -OR- the
  448.             separator character is a backslash or a double-quote -OR- the string
  449.             contains an unbalanced backslash or double-quote character.
  450.             </returns>
  451.         </member>
  452.         <member name="M:System.Data.SQLite.SQLiteConvert.ToStringWithProvider(System.Object,System.IFormatProvider)">
  453.             <summary>
  454.             Queries and returns the string representation for an object, using the
  455.             specified (or current) format provider.
  456.             </summary>
  457.             <param name="obj">
  458.             The object instance to return the string representation for.
  459.             </param>
  460.             <param name="provider">
  461.             The format provider to use -OR- null if the current format provider for
  462.             the thread should be used instead.
  463.             </param>
  464.             <returns>
  465.             The string representation for the object instance -OR- null if the
  466.             object instance is also null.
  467.             </returns>
  468.         </member>
  469.         <member name="M:System.Data.SQLite.SQLiteConvert.ToBoolean(System.Object,System.IFormatProvider,System.Boolean)">
  470.             <summary>
  471.             Attempts to convert an arbitrary object to the Boolean data type.
  472.             Null object values are converted to false.  Throws an exception
  473.             upon failure.
  474.             </summary>
  475.             <param name="obj">
  476.             The object value to convert.
  477.             </param>
  478.             <param name="provider">
  479.             The format provider to use.
  480.             </param>
  481.             <param name="viaFramework">
  482.             If non-zero, a string value will be converted using the
  483.             <see cref="M:System.Convert.ToBoolean(System.Object,System.IFormatProvider)"/>
  484.             method; otherwise, the <see cref="M:System.Data.SQLite.SQLiteConvert.ToBoolean(System.String)"/>
  485.             method will be used.
  486.             </param>
  487.             <returns>
  488.             The converted boolean value.
  489.             </returns>
  490.         </member>
  491.         <member name="M:System.Data.SQLite.SQLiteConvert.ToBoolean(System.Object)">
  492.             <summary>
  493.             Convert a value to true or false.
  494.             </summary>
  495.             <param name="source">A string or number representing true or false</param>
  496.             <returns></returns>
  497.         </member>
  498.         <member name="M:System.Data.SQLite.SQLiteConvert.ToBoolean(System.String)">
  499.             <summary>
  500.             Convert a string to true or false.
  501.             </summary>
  502.             <param name="source">A string representing true or false</param>
  503.             <returns></returns>
  504.             <remarks>
  505.             "yes", "no", "y", "n", "0", "1", "on", "off" as well as Boolean.FalseString and Boolean.TrueString will all be
  506.             converted to a proper boolean value.
  507.             </remarks>
  508.         </member>
  509.         <member name="M:System.Data.SQLite.SQLiteConvert.SQLiteTypeToType(System.Data.SQLite.SQLiteType)">
  510.             <summary>
  511.             Converts a SQLiteType to a .NET Type object
  512.             </summary>
  513.             <param name="t">The SQLiteType to convert</param>
  514.             <returns>Returns a .NET Type object</returns>
  515.         </member>
  516.         <member name="M:System.Data.SQLite.SQLiteConvert.TypeToDbType(System.Type)">
  517.             <summary>
  518.             For a given intrinsic type, return a DbType
  519.             </summary>
  520.             <param name="typ">The native type to convert</param>
  521.             <returns>The corresponding (closest match) DbType</returns>
  522.         </member>
  523.         <member name="M:System.Data.SQLite.SQLiteConvert.DbTypeToColumnSize(System.Data.DbType)">
  524.             <summary>
  525.             Returns the ColumnSize for the given DbType
  526.             </summary>
  527.             <param name="typ">The DbType to get the size of</param>
  528.             <returns></returns>
  529.         </member>
  530.         <member name="M:System.Data.SQLite.SQLiteConvert.GetDefaultTypeName(System.Data.SQLite.SQLiteConnection)">
  531.             <summary>
  532.             Determines the default database type name to be used when a
  533.             per-connection value is not available.
  534.             </summary>
  535.             <param name="connection">
  536.             The connection context for type mappings, if any.
  537.             </param>
  538.             <returns>
  539.             The default database type name to use.
  540.             </returns>
  541.         </member>
  542.         <member name="M:System.Data.SQLite.SQLiteConvert.DefaultTypeNameWarning(System.Data.DbType,System.Data.SQLite.SQLiteConnectionFlags,System.String)">
  543.             <summary>
  544.             If applicable, issues a trace log message warning about falling back to
  545.             the default database type name.
  546.             </summary>
  547.             <param name="dbType">
  548.             The database value type.
  549.             </param>
  550.             <param name="flags">
  551.             The flags associated with the parent connection object.
  552.             </param>
  553.             <param name="typeName">
  554.             The textual name of the database type.
  555.             </param>
  556.         </member>
  557.         <member name="M:System.Data.SQLite.SQLiteConvert.DefaultDbTypeWarning(System.String,System.Data.SQLite.SQLiteConnectionFlags,System.Nullable{System.Data.DbType})">
  558.             <summary>
  559.             If applicable, issues a trace log message warning about falling back to
  560.             the default database value type.
  561.             </summary>
  562.             <param name="typeName">
  563.             The textual name of the database type.
  564.             </param>
  565.             <param name="flags">
  566.             The flags associated with the parent connection object.
  567.             </param>
  568.             <param name="dbType">
  569.             The database value type.
  570.             </param>
  571.         </member>
  572.         <member name="M:System.Data.SQLite.SQLiteConvert.DbTypeToTypeName(System.Data.SQLite.SQLiteConnection,System.Data.DbType,System.Data.SQLite.SQLiteConnectionFlags)">
  573.             <summary>
  574.             For a given database value type, return the "closest-match" textual database type name.
  575.             </summary>
  576.             <param name="connection">The connection context for custom type mappings, if any.</param>
  577.             <param name="dbType">The database value type.</param>
  578.             <param name="flags">The flags associated with the parent connection object.</param>
  579.             <returns>The type name or an empty string if it cannot be determined.</returns>
  580.         </member>
  581.         <member name="M:System.Data.SQLite.SQLiteConvert.DbTypeToType(System.Data.DbType)">
  582.             <summary>
  583.             Convert a DbType to a Type
  584.             </summary>
  585.             <param name="typ">The DbType to convert from</param>
  586.             <returns>The closest-match .NET type</returns>
  587.         </member>
  588.         <member name="M:System.Data.SQLite.SQLiteConvert.TypeToAffinity(System.Type)">
  589.             <summary>
  590.             For a given type, return the closest-match SQLite TypeAffinity, which only understands a very limited subset of types.
  591.             </summary>
  592.             <param name="typ">The type to evaluate</param>
  593.             <returns>The SQLite type affinity for that type.</returns>
  594.         </member>
  595.         <member name="M:System.Data.SQLite.SQLiteConvert.GetSQLiteDbTypeMap">
  596.             <summary>
  597.             Builds and returns a map containing the database column types
  598.             recognized by this provider.
  599.             </summary>
  600.             <returns>
  601.             A map containing the database column types recognized by this
  602.             provider.
  603.             </returns>
  604.         </member>
  605.         <member name="M:System.Data.SQLite.SQLiteConvert.IsStringDbType(System.Data.DbType)">
  606.             <summary>
  607.             Determines if a database type is considered to be a string.
  608.             </summary>
  609.             <param name="type">
  610.             The database type to check.
  611.             </param>
  612.             <returns>
  613.             Non-zero if the database type is considered to be a string, zero
  614.             otherwise.
  615.             </returns>
  616.         </member>
  617.         <member name="M:System.Data.SQLite.SQLiteConvert.SettingValueToString(System.Object)">
  618.             <summary>
  619.             Determines and returns the runtime configuration setting string that
  620.             should be used in place of the specified object value.
  621.             </summary>
  622.             <param name="value">
  623.             The object value to convert to a string.
  624.             </param>
  625.             <returns>
  626.             Either the string to use in place of the object value -OR- null if it
  627.             cannot be determined.
  628.             </returns>
  629.         </member>
  630.         <member name="M:System.Data.SQLite.SQLiteConvert.GetDefaultDbType(System.Data.SQLite.SQLiteConnection)">
  631.             <summary>
  632.             Determines the default <see cref="T:System.Data.DbType"/> value to be used when a
  633.             per-connection value is not available.
  634.             </summary>
  635.             <param name="connection">
  636.             The connection context for type mappings, if any.
  637.             </param>
  638.             <returns>
  639.             The default <see cref="T:System.Data.DbType"/> value to use.
  640.             </returns>
  641.         </member>
  642.         <member name="M:System.Data.SQLite.SQLiteConvert.LooksLikeNull(System.String)">
  643.             <summary>
  644.             Determines if the specified textual value appears to be a
  645.             <see cref="T:System.DBNull"/> value.
  646.             </summary>
  647.             <param name="text">
  648.             The textual value to inspect.
  649.             </param>
  650.             <returns>
  651.             Non-zero if the text looks like a <see cref="T:System.DBNull"/> value,
  652.             zero otherwise.
  653.             </returns>
  654.         </member>
  655.         <member name="M:System.Data.SQLite.SQLiteConvert.LooksLikeInt64(System.String)">
  656.             <summary>
  657.             Determines if the specified textual value appears to be an
  658.             <see cref="T:System.Int64"/> value.
  659.             </summary>
  660.             <param name="text">
  661.             The textual value to inspect.
  662.             </param>
  663.             <returns>
  664.             Non-zero if the text looks like an <see cref="T:System.Int64"/> value,
  665.             zero otherwise.
  666.             </returns>
  667.         </member>
  668.         <member name="M:System.Data.SQLite.SQLiteConvert.LooksLikeDouble(System.String)">
  669.             <summary>
  670.             Determines if the specified textual value appears to be a
  671.             <see cref="T:System.Double"/> value.
  672.             </summary>
  673.             <param name="text">
  674.             The textual value to inspect.
  675.             </param>
  676.             <returns>
  677.             Non-zero if the text looks like a <see cref="T:System.Double"/> value,
  678.             zero otherwise.
  679.             </returns>
  680.         </member>
  681.         <member name="M:System.Data.SQLite.SQLiteConvert.LooksLikeDateTime(System.Data.SQLite.SQLiteConvert,System.String)">
  682.             <summary>
  683.             Determines if the specified textual value appears to be a
  684.             <see cref="T:System.DateTime"/> value.
  685.             </summary>
  686.             <param name="convert">
  687.             The <see cref="T:System.Data.SQLite.SQLiteConvert"/> object instance configured with
  688.             the chosen <see cref="T:System.DateTime"/> format.
  689.             </param>
  690.             <param name="text">
  691.             The textual value to inspect.
  692.             </param>
  693.             <returns>
  694.             Non-zero if the text looks like a <see cref="T:System.DateTime"/> in the
  695.             configured format, zero otherwise.
  696.             </returns>
  697.         </member>
  698.         <member name="M:System.Data.SQLite.SQLiteConvert.TypeNameToDbType(System.Data.SQLite.SQLiteConnection,System.String,System.Data.SQLite.SQLiteConnectionFlags)">
  699.             <summary>
  700.             For a given textual database type name, return the "closest-match" database type.
  701.             This method is called during query result processing; therefore, its performance
  702.             is critical.
  703.             </summary>
  704.             <param name="connection">The connection context for custom type mappings, if any.</param>
  705.             <param name="typeName">The textual name of the database type to match.</param>
  706.             <param name="flags">The flags associated with the parent connection object.</param>
  707.             <returns>The .NET DBType the text evaluates to.</returns>
  708.         </member>
  709.         <member name="F:System.Data.SQLite.SQLiteBase.COR_E_EXCEPTION">
  710.             <summary>
  711.             The error code used for logging exceptions caught in user-provided
  712.             code.
  713.             </summary>
  714.         </member>
  715.         <member name="M:System.Data.SQLite.SQLiteBase.SetMemoryStatus(System.Boolean)">
  716.             <summary>
  717.             Sets the status of the memory usage tracking subsystem in the SQLite core library.  By default, this is enabled.
  718.             If this is disabled, memory usage tracking will not be performed.  This is not really a per-connection value, it is
  719.             global to the process.
  720.             </summary>
  721.             <param name="value">Non-zero to enable memory usage tracking, zero otherwise.</param>
  722.             <returns>A standard SQLite return code (i.e. zero for success and non-zero for failure).</returns>
  723.         </member>
  724.         <member name="M:System.Data.SQLite.SQLiteBase.ReleaseMemory">
  725.             <summary>
  726.             Attempts to free as much heap memory as possible for the database connection.
  727.             </summary>
  728.             <returns>A standard SQLite return code (i.e. zero for success and non-zero for failure).</returns>
  729.         </member>
  730.         <member name="M:System.Data.SQLite.SQLiteBase.Shutdown">
  731.             <summary>
  732.             Shutdown the SQLite engine so that it can be restarted with different config options.
  733.             We depend on auto initialization to recover.
  734.             </summary>
  735.         </member>
  736.         <member name="M:System.Data.SQLite.SQLiteBase.IsOpen">
  737.             <summary>
  738.             Determines if the associated native connection handle is open.
  739.             </summary>
  740.             <returns>
  741.             Non-zero if a database connection is open.
  742.             </returns>
  743.         </member>
  744.         <member name="M:System.Data.SQLite.SQLiteBase.Open(System.String,System.Data.SQLite.SQLiteConnectionFlags,System.Data.SQLite.SQLiteOpenFlagsEnum,System.Int32,System.Boolean)">
  745.             <summary>
  746.             Opens a database.
  747.             </summary>
  748.             <remarks>
  749.             Implementers should call SQLiteFunction.BindFunctions() and save the array after opening a connection
  750.             to bind all attributed user-defined functions and collating sequences to the new connection.
  751.             </remarks>
  752.             <param name="strFilename">The filename of the database to open.  SQLite automatically creates it if it doesn't exist.</param>
  753.             <param name="connectionFlags">The flags associated with the parent connection object</param>
  754.             <param name="openFlags">The open flags to use when creating the connection</param>
  755.             <param name="maxPoolSize">The maximum size of the pool for the given filename</param>
  756.             <param name="usePool">If true, the connection can be pulled from the connection pool</param>
  757.         </member>
  758.         <member name="M:System.Data.SQLite.SQLiteBase.Close(System.Boolean)">
  759.             <summary>
  760.             Closes the currently-open database.
  761.             </summary>
  762.             <remarks>
  763.             After the database has been closed implemeters should call SQLiteFunction.UnbindFunctions() to deallocate all interop allocated
  764.             memory associated with the user-defined functions and collating sequences tied to the closed connection.
  765.             </remarks>
  766.             <param name="canThrow">Non-zero if the operation is allowed to throw exceptions, zero otherwise.</param>
  767.         </member>
  768.         <member name="M:System.Data.SQLite.SQLiteBase.SetTimeout(System.Int32)">
  769.             <summary>
  770.             Sets the busy timeout on the connection.  SQLiteCommand will call this before executing any command.
  771.             </summary>
  772.             <param name="nTimeoutMS">The number of milliseconds to wait before returning SQLITE_BUSY</param>
  773.         </member>
  774.         <member name="M:System.Data.SQLite.SQLiteBase.GetLastError">
  775.             <summary>
  776.             Returns the text of the last error issued by SQLite
  777.             </summary>
  778.             <returns></returns>
  779.         </member>
  780.         <member name="M:System.Data.SQLite.SQLiteBase.GetLastError(System.String)">
  781.             <summary>
  782.             Returns the text of the last error issued by SQLite -OR- the specified default error text if
  783.             none is available from the SQLite core library.
  784.             </summary>
  785.             <param name="defValue">
  786.             The error text to return in the event that one is not available from the SQLite core library.
  787.             </param>
  788.             <returns>
  789.             The error text.
  790.             </returns>
  791.         </member>
  792.         <member name="M:System.Data.SQLite.SQLiteBase.ClearPool">
  793.             <summary>
  794.             When pooling is enabled, force this connection to be disposed rather than returned to the pool
  795.             </summary>
  796.         </member>
  797.         <member name="M:System.Data.SQLite.SQLiteBase.CountPool">
  798.             <summary>
  799.             When pooling is enabled, returns the number of pool entries matching the current file name.
  800.             </summary>
  801.             <returns>The number of pool entries matching the current file name.</returns>
  802.         </member>
  803.         <member name="M:System.Data.SQLite.SQLiteBase.Prepare(System.Data.SQLite.SQLiteConnection,System.String,System.Data.SQLite.SQLiteStatement,System.UInt32,System.String@)">
  804.             <summary>
  805.             Prepares a SQL statement for execution.
  806.             </summary>
  807.             <param name="cnn">The source connection preparing the command.  Can be null for any caller except LINQ</param>
  808.             <param name="strSql">The SQL command text to prepare</param>
  809.             <param name="previous">The previous statement in a multi-statement command, or null if no previous statement exists</param>
  810.             <param name="timeoutMS">The timeout to wait before aborting the prepare</param>
  811.             <param name="strRemain">The remainder of the statement that was not processed.  Each call to prepare parses the
  812.             SQL up to to either the end of the text or to the first semi-colon delimiter.  The remaining text is returned
  813.             here for a subsequent call to Prepare() until all the text has been processed.</param>
  814.             <returns>Returns an initialized SQLiteStatement.</returns>
  815.         </member>
  816.         <member name="M:System.Data.SQLite.SQLiteBase.Step(System.Data.SQLite.SQLiteStatement)">
  817.             <summary>
  818.             Steps through a prepared statement.
  819.             </summary>
  820.             <param name="stmt">The SQLiteStatement to step through</param>
  821.             <returns>True if a row was returned, False if not.</returns>
  822.         </member>
  823.         <member name="M:System.Data.SQLite.SQLiteBase.Reset(System.Data.SQLite.SQLiteStatement)">
  824.             <summary>
  825.             Resets a prepared statement so it can be executed again.  If the error returned is SQLITE_SCHEMA,
  826.             transparently attempt to rebuild the SQL statement and throw an error if that was not possible.
  827.             </summary>
  828.             <param name="stmt">The statement to reset</param>
  829.             <returns>Returns -1 if the schema changed while resetting, 0 if the reset was sucessful or 6 (SQLITE_LOCKED) if the reset failed due to a lock</returns>
  830.         </member>
  831.         <member name="M:System.Data.SQLite.SQLiteBase.Cancel">
  832.             <summary>
  833.             Attempts to interrupt the query currently executing on the associated
  834.             native database connection.
  835.             </summary>
  836.         </member>
  837.         <member name="M:System.Data.SQLite.SQLiteBase.BindFunction(System.Data.SQLite.SQLiteFunctionAttribute,System.Data.SQLite.SQLiteFunction,System.Data.SQLite.SQLiteConnectionFlags)">
  838.             <summary>
  839.             This function binds a user-defined functions to the connection.
  840.             </summary>
  841.             <param name="functionAttribute">
  842.             The <see cref="T:System.Data.SQLite.SQLiteFunctionAttribute"/> object instance containing
  843.             the metadata for the function to be bound.
  844.             </param>
  845.             <param name="function">
  846.             The <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance that implements the
  847.             function to be bound.
  848.             </param>
  849.             <param name="flags">
  850.             The flags associated with the parent connection object.
  851.             </param>
  852.         </member>
  853.         <member name="M:System.Data.SQLite.SQLiteBase.CreateModule(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteConnectionFlags)">
  854.             <summary>
  855.             Calls the native SQLite core library in order to create a disposable
  856.             module containing the implementation of a virtual table.
  857.             </summary>
  858.             <param name="module">
  859.             The module object to be used when creating the native disposable module.
  860.             </param>
  861.             <param name="flags">
  862.             The flags for the associated <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance.
  863.             </param>
  864.         </member>
  865.         <member name="M:System.Data.SQLite.SQLiteBase.DisposeModule(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteConnectionFlags)">
  866.             <summary>
  867.             Calls the native SQLite core library in order to cleanup the resources
  868.             associated with a module containing the implementation of a virtual table.
  869.             </summary>
  870.             <param name="module">
  871.             The module object previously passed to the <see cref="M:System.Data.SQLite.SQLiteBase.CreateModule(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteConnectionFlags)"/>
  872.             method.
  873.             </param>
  874.             <param name="flags">
  875.             The flags for the associated <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance.
  876.             </param>
  877.         </member>
  878.         <member name="M:System.Data.SQLite.SQLiteBase.DeclareVirtualTable(System.Data.SQLite.SQLiteModule,System.String,System.String@)">
  879.             <summary>
  880.             Calls the native SQLite core library in order to declare a virtual table
  881.             in response to a call into the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/>
  882.             or <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> virtual table methods.
  883.             </summary>
  884.             <param name="module">
  885.             The virtual table module that is to be responsible for the virtual table
  886.             being declared.
  887.             </param>
  888.             <param name="strSql">
  889.             The string containing the SQL statement describing the virtual table to
  890.             be declared.
  891.             </param>
  892.             <param name="error">
  893.             Upon success, the contents of this parameter are undefined.  Upon failure,
  894.             it should contain an appropriate error message.
  895.             </param>
  896.             <returns>
  897.             A standard SQLite return code.
  898.             </returns>
  899.         </member>
  900.         <member name="M:System.Data.SQLite.SQLiteBase.DeclareVirtualFunction(System.Data.SQLite.SQLiteModule,System.Int32,System.String,System.String@)">
  901.             <summary>
  902.             Calls the native SQLite core library in order to declare a virtual table
  903.             function in response to a call into the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/>
  904.             or <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> virtual table methods.
  905.             </summary>
  906.             <param name="module">
  907.             The virtual table module that is to be responsible for the virtual table
  908.             function being declared.
  909.             </param>
  910.             <param name="argumentCount">
  911.             The number of arguments to the function being declared.
  912.             </param>
  913.             <param name="name">
  914.             The name of the function being declared.
  915.             </param>
  916.             <param name="error">
  917.             Upon success, the contents of this parameter are undefined.  Upon failure,
  918.             it should contain an appropriate error message.
  919.             </param>
  920.             <returns>
  921.             A standard SQLite return code.
  922.             </returns>
  923.         </member>
  924.         <member name="M:System.Data.SQLite.SQLiteBase.SetLoadExtension(System.Boolean)">
  925.             <summary>
  926.             Enables or disabled extension loading by SQLite.
  927.             </summary>
  928.             <param name="bOnOff">
  929.             True to enable loading of extensions, false to disable.
  930.             </param>
  931.         </member>
  932.         <member name="M:System.Data.SQLite.SQLiteBase.LoadExtension(System.String,System.String)">
  933.             <summary>
  934.             Loads a SQLite extension library from the named file.
  935.             </summary>
  936.             <param name="fileName">
  937.             The name of the dynamic link library file containing the extension.
  938.             </param>
  939.             <param name="procName">
  940.             The name of the exported function used to initialize the extension.
  941.             If null, the default "sqlite3_extension_init" will be used.
  942.             </param>
  943.         </member>
  944.         <member name="M:System.Data.SQLite.SQLiteBase.SetExtendedResultCodes(System.Boolean)">
  945.             <summary>
  946.             Enables or disabled extened result codes returned by SQLite
  947.             </summary>
  948.             <param name="bOnOff">true to enable extended result codes, false to disable.</param>
  949.             <returns></returns>
  950.         </member>
  951.         <member name="M:System.Data.SQLite.SQLiteBase.ResultCode">
  952.             <summary>
  953.             Returns the numeric result code for the most recent failed SQLite API call
  954.             associated with the database connection.
  955.             </summary>
  956.             <returns>Result code</returns>
  957.         </member>
  958.         <member name="M:System.Data.SQLite.SQLiteBase.ExtendedResultCode">
  959.             <summary>
  960.             Returns the extended numeric result code for the most recent failed SQLite API call
  961.             associated with the database connection.
  962.             </summary>
  963.             <returns>Extended result code</returns>
  964.         </member>
  965.         <member name="M:System.Data.SQLite.SQLiteBase.LogMessage(System.Data.SQLite.SQLiteErrorCode,System.String)">
  966.             <summary>
  967.             Add a log message via the SQLite sqlite3_log interface.
  968.             </summary>
  969.             <param name="iErrCode">Error code to be logged with the message.</param>
  970.             <param name="zMessage">String to be logged.  Unlike the SQLite sqlite3_log()
  971.             interface, this should be pre-formatted.  Consider using the
  972.             String.Format() function.</param>
  973.             <returns></returns>
  974.         </member>
  975.         <member name="M:System.Data.SQLite.SQLiteBase.IsInitialized">
  976.             <summary>
  977.             Checks if the SQLite core library has been initialized in the current process.
  978.             </summary>
  979.             <returns>
  980.             Non-zero if the SQLite core library has been initialized in the current process,
  981.             zero otherwise.
  982.             </returns>
  983.         </member>
  984.         <member name="M:System.Data.SQLite.SQLiteBase.InitializeBackup(System.Data.SQLite.SQLiteConnection,System.String,System.String)">
  985.             <summary>
  986.             Creates a new SQLite backup object based on the provided destination
  987.             database connection.  The source database connection is the one
  988.             associated with this object.  The source and destination database
  989.             connections cannot be the same.
  990.             </summary>
  991.             <param name="destCnn">The destination database connection.</param>
  992.             <param name="destName">The destination database name.</param>
  993.             <param name="sourceName">The source database name.</param>
  994.             <returns>The newly created backup object.</returns>
  995.         </member>
  996.         <member name="M:System.Data.SQLite.SQLiteBase.StepBackup(System.Data.SQLite.SQLiteBackup,System.Int32,System.Boolean@)">
  997.             <summary>
  998.             Copies up to N pages from the source database to the destination
  999.             database associated with the specified backup object.
  1000.             </summary>
  1001.             <param name="backup">The backup object to use.</param>
  1002.             <param name="nPage">
  1003.             The number of pages to copy or negative to copy all remaining pages.
  1004.             </param>
  1005.             <param name="retry">
  1006.             Set to true if the operation needs to be retried due to database
  1007.             locking issues.
  1008.             </param>
  1009.             <returns>
  1010.             True if there are more pages to be copied, false otherwise.
  1011.             </returns>
  1012.         </member>
  1013.         <member name="M:System.Data.SQLite.SQLiteBase.RemainingBackup(System.Data.SQLite.SQLiteBackup)">
  1014.             <summary>
  1015.             Returns the number of pages remaining to be copied from the source
  1016.             database to the destination database associated with the specified
  1017.             backup object.
  1018.             </summary>
  1019.             <param name="backup">The backup object to check.</param>
  1020.             <returns>The number of pages remaining to be copied.</returns>
  1021.         </member>
  1022.         <member name="M:System.Data.SQLite.SQLiteBase.PageCountBackup(System.Data.SQLite.SQLiteBackup)">
  1023.             <summary>
  1024.             Returns the total number of pages in the source database associated
  1025.             with the specified backup object.
  1026.             </summary>
  1027.             <param name="backup">The backup object to check.</param>
  1028.             <returns>The total number of pages in the source database.</returns>
  1029.         </member>
  1030.         <member name="M:System.Data.SQLite.SQLiteBase.FinishBackup(System.Data.SQLite.SQLiteBackup)">
  1031.             <summary>
  1032.             Destroys the backup object, rolling back any backup that may be in
  1033.             progess.
  1034.             </summary>
  1035.             <param name="backup">The backup object to destroy.</param>
  1036.         </member>
  1037.         <member name="M:System.Data.SQLite.SQLiteBase.FallbackGetErrorString(System.Data.SQLite.SQLiteErrorCode)">
  1038.             <summary>
  1039.             Returns the error message for the specified SQLite return code using
  1040.             the internal static lookup table.
  1041.             </summary>
  1042.             <param name="rc">The SQLite return code.</param>
  1043.             <returns>The error message or null if it cannot be found.</returns>
  1044.         </member>
  1045.         <member name="M:System.Data.SQLite.SQLiteBase.GetErrorString(System.Data.SQLite.SQLiteErrorCode)">
  1046.             <summary>
  1047.             Returns the error message for the specified SQLite return code using
  1048.             the sqlite3_errstr() function, falling back to the internal lookup
  1049.             table if necessary.
  1050.             </summary>
  1051.             <param name="rc">The SQLite return code.</param>
  1052.             <returns>The error message or null if it cannot be found.</returns>
  1053.         </member>
  1054.         <member name="P:System.Data.SQLite.SQLiteBase.Version">
  1055.             <summary>
  1056.             Returns a string representing the active version of SQLite
  1057.             </summary>
  1058.         </member>
  1059.         <member name="P:System.Data.SQLite.SQLiteBase.VersionNumber">
  1060.             <summary>
  1061.             Returns an integer representing the active version of SQLite
  1062.             </summary>
  1063.         </member>
  1064.         <member name="P:System.Data.SQLite.SQLiteBase.LastInsertRowId">
  1065.             <summary>
  1066.             Returns the rowid of the most recent successful INSERT into the database from this connection.
  1067.             </summary>
  1068.         </member>
  1069.         <member name="P:System.Data.SQLite.SQLiteBase.Changes">
  1070.             <summary>
  1071.             Returns the number of changes the last executing insert/update caused.
  1072.             </summary>
  1073.         </member>
  1074.         <member name="P:System.Data.SQLite.SQLiteBase.MemoryUsed">
  1075.             <summary>
  1076.             Returns the amount of memory (in bytes) currently in use by the SQLite core library.  This is not really a per-connection
  1077.             value, it is global to the process.
  1078.             </summary>
  1079.         </member>
  1080.         <member name="P:System.Data.SQLite.SQLiteBase.MemoryHighwater">
  1081.             <summary>
  1082.             Returns the maximum amount of memory (in bytes) used by the SQLite core library since the high-water mark was last reset.
  1083.             This is not really a per-connection value, it is global to the process.
  1084.             </summary>
  1085.         </member>
  1086.         <member name="P:System.Data.SQLite.SQLiteBase.OwnHandle">
  1087.             <summary>
  1088.             Returns non-zero if the underlying native connection handle is owned by this instance.
  1089.             </summary>
  1090.         </member>
  1091.         <member name="P:System.Data.SQLite.SQLiteBase.AutoCommit">
  1092.             <summary>
  1093.             Returns non-zero if the given database connection is in autocommit mode.
  1094.             Autocommit mode is on by default.  Autocommit mode is disabled by a BEGIN
  1095.             statement.  Autocommit mode is re-enabled by a COMMIT or ROLLBACK.
  1096.             </summary>
  1097.         </member>
  1098.         <member name="F:System.Data.SQLite.SQLite3._sql">
  1099.             <summary>
  1100.             The opaque pointer returned to us by the sqlite provider
  1101.             </summary>
  1102.         </member>
  1103.         <member name="F:System.Data.SQLite.SQLite3._functions">
  1104.             <summary>
  1105.             The user-defined functions registered on this connection
  1106.             </summary>
  1107.         </member>
  1108.         <member name="F:System.Data.SQLite.SQLite3._modules">
  1109.             <summary>
  1110.             The modules created using this connection.
  1111.             </summary>
  1112.         </member>
  1113.         <member name="M:System.Data.SQLite.SQLite3.#ctor(System.Data.SQLite.SQLiteDateFormats,System.DateTimeKind,System.String,System.IntPtr,System.String,System.Boolean)">
  1114.             <summary>
  1115.             Constructs the object used to interact with the SQLite core library
  1116.             using the UTF-8 text encoding.
  1117.             </summary>
  1118.             <param name="fmt">
  1119.             The DateTime format to be used when converting string values to a
  1120.             DateTime and binding DateTime parameters.
  1121.             </param>
  1122.             <param name="kind">
  1123.             The <see cref="T:System.DateTimeKind"/> to be used when creating DateTime
  1124.             values.
  1125.             </param>
  1126.             <param name="fmtString">
  1127.             The format string to be used when parsing and formatting DateTime
  1128.             values.
  1129.             </param>
  1130.             <param name="db">
  1131.             The native handle to be associated with the database connection.
  1132.             </param>
  1133.             <param name="fileName">
  1134.             The fully qualified file name associated with <paramref name="db "/>.
  1135.             </param>
  1136.             <param name="ownHandle">
  1137.             Non-zero if the newly created object instance will need to dispose
  1138.             of <paramref name="db"/> when it is no longer needed.
  1139.             </param>
  1140.         </member>
  1141.         <member name="M:System.Data.SQLite.SQLite3.DisposeModules">
  1142.             <summary>
  1143.             This method attempts to dispose of all the <see cref="T:System.Data.SQLite.SQLiteModule"/> derived
  1144.             object instances currently associated with the native database connection.
  1145.             </summary>
  1146.         </member>
  1147.         <member name="M:System.Data.SQLite.SQLite3.Cancel">
  1148.             <summary>
  1149.             Attempts to interrupt the query currently executing on the associated
  1150.             native database connection.
  1151.             </summary>
  1152.         </member>
  1153.         <member name="M:System.Data.SQLite.SQLite3.BindFunction(System.Data.SQLite.SQLiteFunctionAttribute,System.Data.SQLite.SQLiteFunction,System.Data.SQLite.SQLiteConnectionFlags)">
  1154.             <summary>
  1155.             This function binds a user-defined function to the connection.
  1156.             </summary>
  1157.             <param name="functionAttribute">
  1158.             The <see cref="T:System.Data.SQLite.SQLiteFunctionAttribute"/> object instance containing
  1159.             the metadata for the function to be bound.
  1160.             </param>
  1161.             <param name="function">
  1162.             The <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance that implements the
  1163.             function to be bound.
  1164.             </param>
  1165.             <param name="flags">
  1166.             The flags associated with the parent connection object.
  1167.             </param>
  1168.         </member>
  1169.         <member name="M:System.Data.SQLite.SQLite3.ReleaseMemory">
  1170.             <summary>
  1171.             Attempts to free as much heap memory as possible for the database connection.
  1172.             </summary>
  1173.             <returns>A standard SQLite return code (i.e. zero for success and non-zero for failure).</returns>
  1174.         </member>
  1175.         <member name="M:System.Data.SQLite.SQLite3.StaticReleaseMemory(System.Int32,System.Boolean,System.Boolean,System.Int32@,System.Boolean@,System.UInt32@)">
  1176.             <summary>
  1177.             Attempts to free N bytes of heap memory by deallocating non-essential memory
  1178.             allocations held by the database library. Memory used to cache database pages
  1179.             to improve performance is an example of non-essential memory.  This is a no-op
  1180.             returning zero if the SQLite core library was not compiled with the compile-time
  1181.             option SQLITE_ENABLE_MEMORY_MANAGEMENT.  Optionally, attempts to reset and/or
  1182.             compact the Win32 native heap, if applicable.
  1183.             </summary>
  1184.             <param name="nBytes">
  1185.             The requested number of bytes to free.
  1186.             </param>
  1187.             <param name="reset">
  1188.             Non-zero to attempt a heap reset.
  1189.             </param>
  1190.             <param name="compact">
  1191.             Non-zero to attempt heap compaction.
  1192.             </param>
  1193.             <param name="nFree">
  1194.             The number of bytes actually freed.  This value may be zero.
  1195.             </param>
  1196.             <param name="resetOk">
  1197.             This value will be non-zero if the heap reset was successful.
  1198.             </param>
  1199.             <param name="nLargest">
  1200.             The size of the largest committed free block in the heap, in bytes.
  1201.             This value will be zero unless heap compaction is enabled.
  1202.             </param>
  1203.             <returns>
  1204.             A standard SQLite return code (i.e. zero for success and non-zero
  1205.             for failure).
  1206.             </returns>
  1207.         </member>
  1208.         <member name="M:System.Data.SQLite.SQLite3.Shutdown">
  1209.             <summary>
  1210.             Shutdown the SQLite engine so that it can be restarted with different
  1211.             configuration options.  We depend on auto initialization to recover.
  1212.             </summary>
  1213.             <returns>Returns a standard SQLite result code.</returns>
  1214.         </member>
  1215.         <member name="M:System.Data.SQLite.SQLite3.StaticShutdown(System.Boolean)">
  1216.             <summary>
  1217.             Shutdown the SQLite engine so that it can be restarted with different
  1218.             configuration options.  We depend on auto initialization to recover.
  1219.             </summary>
  1220.             <param name="directories">
  1221.             Non-zero to reset the database and temporary directories to their
  1222.             default values, which should be null for both.  This parameter has no
  1223.             effect on non-Windows operating systems.
  1224.             </param>
  1225.             <returns>Returns a standard SQLite result code.</returns>
  1226.         </member>
  1227.         <member name="M:System.Data.SQLite.SQLite3.IsOpen">
  1228.             <summary>
  1229.             Determines if the associated native connection handle is open.
  1230.             </summary>
  1231.             <returns>
  1232.             Non-zero if the associated native connection handle is open.
  1233.             </returns>
  1234.         </member>
  1235.         <member name="M:System.Data.SQLite.SQLite3.CreateModule(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteConnectionFlags)">
  1236.             <summary>
  1237.             Calls the native SQLite core library in order to create a disposable
  1238.             module containing the implementation of a virtual table.
  1239.             </summary>
  1240.             <param name="module">
  1241.             The module object to be used when creating the native disposable module.
  1242.             </param>
  1243.             <param name="flags">
  1244.             The flags for the associated <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance.
  1245.             </param>
  1246.         </member>
  1247.         <member name="M:System.Data.SQLite.SQLite3.DisposeModule(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteConnectionFlags)">
  1248.             <summary>
  1249.             Calls the native SQLite core library in order to cleanup the resources
  1250.             associated with a module containing the implementation of a virtual table.
  1251.             </summary>
  1252.             <param name="module">
  1253.             The module object previously passed to the <see cref="M:System.Data.SQLite.SQLite3.CreateModule(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteConnectionFlags)"/>
  1254.             method.
  1255.             </param>
  1256.             <param name="flags">
  1257.             The flags for the associated <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance.
  1258.             </param>
  1259.         </member>
  1260.         <member name="M:System.Data.SQLite.SQLite3.DeclareVirtualTable(System.Data.SQLite.SQLiteModule,System.String,System.String@)">
  1261.             <summary>
  1262.             Calls the native SQLite core library in order to declare a virtual table
  1263.             in response to a call into the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/>
  1264.             or <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> virtual table methods.
  1265.             </summary>
  1266.             <param name="module">
  1267.             The virtual table module that is to be responsible for the virtual table
  1268.             being declared.
  1269.             </param>
  1270.             <param name="strSql">
  1271.             The string containing the SQL statement describing the virtual table to
  1272.             be declared.
  1273.             </param>
  1274.             <param name="error">
  1275.             Upon success, the contents of this parameter are undefined.  Upon failure,
  1276.             it should contain an appropriate error message.
  1277.             </param>
  1278.             <returns>
  1279.             A standard SQLite return code.
  1280.             </returns>
  1281.         </member>
  1282.         <member name="M:System.Data.SQLite.SQLite3.DeclareVirtualFunction(System.Data.SQLite.SQLiteModule,System.Int32,System.String,System.String@)">
  1283.             <summary>
  1284.             Calls the native SQLite core library in order to declare a virtual table
  1285.             function in response to a call into the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/>
  1286.             or <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> virtual table methods.
  1287.             </summary>
  1288.             <param name="module">
  1289.             The virtual table module that is to be responsible for the virtual table
  1290.             function being declared.
  1291.             </param>
  1292.             <param name="argumentCount">
  1293.             The number of arguments to the function being declared.
  1294.             </param>
  1295.             <param name="name">
  1296.             The name of the function being declared.
  1297.             </param>
  1298.             <param name="error">
  1299.             Upon success, the contents of this parameter are undefined.  Upon failure,
  1300.             it should contain an appropriate error message.
  1301.             </param>
  1302.             <returns>
  1303.             A standard SQLite return code.
  1304.             </returns>
  1305.         </member>
  1306.         <member name="M:System.Data.SQLite.SQLite3.SetLoadExtension(System.Boolean)">
  1307.             <summary>
  1308.             Enables or disabled extension loading by SQLite.
  1309.             </summary>
  1310.             <param name="bOnOff">
  1311.             True to enable loading of extensions, false to disable.
  1312.             </param>
  1313.         </member>
  1314.         <member name="M:System.Data.SQLite.SQLite3.LoadExtension(System.String,System.String)">
  1315.             <summary>
  1316.             Loads a SQLite extension library from the named file.
  1317.             </summary>
  1318.             <param name="fileName">
  1319.             The name of the dynamic link library file containing the extension.
  1320.             </param>
  1321.             <param name="procName">
  1322.             The name of the exported function used to initialize the extension.
  1323.             If null, the default "sqlite3_extension_init" will be used.
  1324.             </param>
  1325.         </member>
  1326.         <member name="M:System.Data.SQLite.SQLite3.SetExtendedResultCodes(System.Boolean)">
  1327.             Enables or disabled extended result codes returned by SQLite
  1328.         </member>
  1329.         <member name="M:System.Data.SQLite.SQLite3.ResultCode">
  1330.             Gets the last SQLite error code
  1331.         </member>
  1332.         <member name="M:System.Data.SQLite.SQLite3.ExtendedResultCode">
  1333.             Gets the last SQLite extended error code
  1334.         </member>
  1335.         <member name="M:System.Data.SQLite.SQLite3.LogMessage(System.Data.SQLite.SQLiteErrorCode,System.String)">
  1336.             Add a log message via the SQLite sqlite3_log interface.
  1337.         </member>
  1338.         <member name="M:System.Data.SQLite.SQLite3.StaticLogMessage(System.Data.SQLite.SQLiteErrorCode,System.String)">
  1339.             Add a log message via the SQLite sqlite3_log interface.
  1340.         </member>
  1341.         <member name="M:System.Data.SQLite.SQLite3.SetLogCallback(System.Data.SQLite.SQLiteLogCallback)">
  1342.             <summary>
  1343.             Allows the setting of a logging callback invoked by SQLite when a
  1344.             log event occurs.  Only one callback may be set.  If NULL is passed,
  1345.             the logging callback is unregistered.
  1346.             </summary>
  1347.             <param name="func">The callback function to invoke.</param>
  1348.             <returns>Returns a result code</returns>
  1349.         </member>
  1350.         <member name="M:System.Data.SQLite.SQLite3.InitializeBackup(System.Data.SQLite.SQLiteConnection,System.String,System.String)">
  1351.             <summary>
  1352.             Creates a new SQLite backup object based on the provided destination
  1353.             database connection.  The source database connection is the one
  1354.             associated with this object.  The source and destination database
  1355.             connections cannot be the same.
  1356.             </summary>
  1357.             <param name="destCnn">The destination database connection.</param>
  1358.             <param name="destName">The destination database name.</param>
  1359.             <param name="sourceName">The source database name.</param>
  1360.             <returns>The newly created backup object.</returns>
  1361.         </member>
  1362.         <member name="M:System.Data.SQLite.SQLite3.StepBackup(System.Data.SQLite.SQLiteBackup,System.Int32,System.Boolean@)">
  1363.             <summary>
  1364.             Copies up to N pages from the source database to the destination
  1365.             database associated with the specified backup object.
  1366.             </summary>
  1367.             <param name="backup">The backup object to use.</param>
  1368.             <param name="nPage">
  1369.             The number of pages to copy, negative to copy all remaining pages.
  1370.             </param>
  1371.             <param name="retry">
  1372.             Set to true if the operation needs to be retried due to database
  1373.             locking issues; otherwise, set to false.
  1374.             </param>
  1375.             <returns>
  1376.             True if there are more pages to be copied, false otherwise.
  1377.             </returns>
  1378.         </member>
  1379.         <member name="M:System.Data.SQLite.SQLite3.RemainingBackup(System.Data.SQLite.SQLiteBackup)">
  1380.             <summary>
  1381.             Returns the number of pages remaining to be copied from the source
  1382.             database to the destination database associated with the specified
  1383.             backup object.
  1384.             </summary>
  1385.             <param name="backup">The backup object to check.</param>
  1386.             <returns>The number of pages remaining to be copied.</returns>
  1387.         </member>
  1388.         <member name="M:System.Data.SQLite.SQLite3.PageCountBackup(System.Data.SQLite.SQLiteBackup)">
  1389.             <summary>
  1390.             Returns the total number of pages in the source database associated
  1391.             with the specified backup object.
  1392.             </summary>
  1393.             <param name="backup">The backup object to check.</param>
  1394.             <returns>The total number of pages in the source database.</returns>
  1395.         </member>
  1396.         <member name="M:System.Data.SQLite.SQLite3.FinishBackup(System.Data.SQLite.SQLiteBackup)">
  1397.             <summary>
  1398.             Destroys the backup object, rolling back any backup that may be in
  1399.             progess.
  1400.             </summary>
  1401.             <param name="backup">The backup object to destroy.</param>
  1402.         </member>
  1403.         <member name="M:System.Data.SQLite.SQLite3.IsInitialized">
  1404.             <summary>
  1405.             Determines if the SQLite core library has been initialized for the
  1406.             current process.
  1407.             </summary>
  1408.             <returns>
  1409.             A boolean indicating whether or not the SQLite core library has been
  1410.             initialized for the current process.
  1411.             </returns>
  1412.         </member>
  1413.         <member name="M:System.Data.SQLite.SQLite3.StaticIsInitialized">
  1414.             <summary>
  1415.             Determines if the SQLite core library has been initialized for the
  1416.             current process.
  1417.             </summary>
  1418.             <returns>
  1419.             A boolean indicating whether or not the SQLite core library has been
  1420.             initialized for the current process.
  1421.             </returns>
  1422.         </member>
  1423.         <member name="M:System.Data.SQLite.SQLite3.GetValue(System.Data.SQLite.SQLiteStatement,System.Data.SQLite.SQLiteConnectionFlags,System.Int32,System.Data.SQLite.SQLiteType)">
  1424.             <summary>
  1425.             Helper function to retrieve a column of data from an active statement.
  1426.             </summary>
  1427.             <param name="stmt">The statement being step()'d through</param>
  1428.             <param name="flags">The flags associated with the connection.</param>
  1429.             <param name="index">The column index to retrieve</param>
  1430.             <param name="typ">The type of data contained in the column.  If Uninitialized, this function will retrieve the datatype information.</param>
  1431.             <returns>Returns the data in the column</returns>
  1432.         </member>
  1433.         <member name="P:System.Data.SQLite.SQLite3.OwnHandle">
  1434.             <summary>
  1435.             Returns non-zero if the underlying native connection handle is owned
  1436.             by this instance.
  1437.             </summary>
  1438.         </member>
  1439.         <member name="T:System.Data.SQLite.SQLite3_UTF16">
  1440.             <summary>
  1441.             Alternate SQLite3 object, overriding many text behaviors to support UTF-16 (Unicode)
  1442.             </summary>
  1443.         </member>
  1444.         <member name="M:System.Data.SQLite.SQLite3_UTF16.#ctor(System.Data.SQLite.SQLiteDateFormats,System.DateTimeKind,System.String,System.IntPtr,System.String,System.Boolean)">
  1445.             <summary>
  1446.             Constructs the object used to interact with the SQLite core library
  1447.             using the UTF-8 text encoding.
  1448.             </summary>
  1449.             <param name="fmt">
  1450.             The DateTime format to be used when converting string values to a
  1451.             DateTime and binding DateTime parameters.
  1452.             </param>
  1453.             <param name="kind">
  1454.             The <see cref="T:System.DateTimeKind"/> to be used when creating DateTime
  1455.             values.
  1456.             </param>
  1457.             <param name="fmtString">
  1458.             The format string to be used when parsing and formatting DateTime
  1459.             values.
  1460.             </param>
  1461.             <param name="db">
  1462.             The native handle to be associated with the database connection.
  1463.             </param>
  1464.             <param name="fileName">
  1465.             The fully qualified file name associated with <paramref name="db"/>.
  1466.             </param>
  1467.             <param name="ownHandle">
  1468.             Non-zero if the newly created object instance will need to dispose
  1469.             of <paramref name="db"/> when it is no longer needed.
  1470.             </param>
  1471.         </member>
  1472.         <member name="M:System.Data.SQLite.SQLite3_UTF16.ToString(System.IntPtr,System.Int32)">
  1473.             <summary>
  1474.             Overrides SQLiteConvert.ToString() to marshal UTF-16 strings instead of UTF-8
  1475.             </summary>
  1476.             <param name="b">A pointer to a UTF-16 string</param>
  1477.             <param name="nbytelen">The length (IN BYTES) of the string</param>
  1478.             <returns>A .NET string</returns>
  1479.         </member>
  1480.         <member name="T:System.Data.SQLite.SQLiteBackup">
  1481.             <summary>
  1482.             Represents a single SQL backup in SQLite.
  1483.             </summary>
  1484.         </member>
  1485.         <member name="F:System.Data.SQLite.SQLiteBackup._sql">
  1486.             <summary>
  1487.             The underlying SQLite object this backup is bound to.
  1488.             </summary>
  1489.         </member>
  1490.         <member name="F:System.Data.SQLite.SQLiteBackup._sqlite_backup">
  1491.             <summary>
  1492.             The actual backup handle.
  1493.             </summary>
  1494.         </member>
  1495.         <member name="F:System.Data.SQLite.SQLiteBackup._destDb">
  1496.             <summary>
  1497.             The destination database for the backup.
  1498.             </summary>
  1499.         </member>
  1500.         <member name="F:System.Data.SQLite.SQLiteBackup._zDestName">
  1501.             <summary>
  1502.             The destination database name for the backup.
  1503.             </summary>
  1504.         </member>
  1505.         <member name="F:System.Data.SQLite.SQLiteBackup._sourceDb">
  1506.             <summary>
  1507.             The source database for the backup.
  1508.             </summary>
  1509.         </member>
  1510.         <member name="F:System.Data.SQLite.SQLiteBackup._zSourceName">
  1511.             <summary>
  1512.             The source database name for the backup.
  1513.             </summary>
  1514.         </member>
  1515.         <member name="F:System.Data.SQLite.SQLiteBackup._stepResult">
  1516.             <summary>
  1517.             The last result from the StepBackup method of the SQLite3 class.
  1518.             This is used to determine if the call to the FinishBackup method of
  1519.             the SQLite3 class should throw an exception when it receives a non-Ok
  1520.             return code from the core SQLite library.
  1521.             </summary>
  1522.         </member>
  1523.         <member name="M:System.Data.SQLite.SQLiteBackup.#ctor(System.Data.SQLite.SQLiteBase,System.Data.SQLite.SQLiteBackupHandle,System.IntPtr,System.Byte[],System.IntPtr,System.Byte[])">
  1524.             <summary>
  1525.             Initializes the backup.
  1526.             </summary>
  1527.             <param name="sqlbase">The base SQLite object.</param>
  1528.             <param name="backup">The backup handle.</param>
  1529.             <param name="destDb">The destination database for the backup.</param>
  1530.             <param name="zDestName">The destination database name for the backup.</param>
  1531.             <param name="sourceDb">The source database for the backup.</param>
  1532.             <param name="zSourceName">The source database name for the backup.</param>
  1533.         </member>
  1534.         <member name="M:System.Data.SQLite.SQLiteBackup.Dispose">
  1535.             <summary>
  1536.             Disposes and finalizes the backup.
  1537.             </summary>
  1538.         </member>
  1539.         <member name="T:System.Data.SQLite.ISQLiteSchemaExtensions">
  1540.             <summary>
  1541.             
  1542.             </summary>
  1543.         </member>
  1544.         <member name="M:System.Data.SQLite.ISQLiteSchemaExtensions.BuildTempSchema(System.Data.SQLite.SQLiteConnection)">
  1545.             <summary>
  1546.             Creates temporary tables on the connection so schema information can be queried.
  1547.             </summary>
  1548.             <param name="connection">
  1549.             The connection upon which to build the schema tables.
  1550.             </param>
  1551.         </member>
  1552.         <member name="T:System.Data.SQLite.SQLiteConnectionFlags">
  1553.             <summary>
  1554.             The extra behavioral flags that can be applied to a connection.
  1555.             </summary>
  1556.         </member>
  1557.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.None">
  1558.             <summary>
  1559.             No extra flags.
  1560.             </summary>
  1561.         </member>
  1562.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogPrepare">
  1563.             <summary>
  1564.             Enable logging of all SQL statements to be prepared.
  1565.             </summary>
  1566.         </member>
  1567.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogPreBind">
  1568.             <summary>
  1569.             Enable logging of all bound parameter types and raw values.
  1570.             </summary>
  1571.         </member>
  1572.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogBind">
  1573.             <summary>
  1574.             Enable logging of all bound parameter strongly typed values.
  1575.             </summary>
  1576.         </member>
  1577.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogCallbackException">
  1578.             <summary>
  1579.             Enable logging of all exceptions caught from user-provided
  1580.             managed code called from native code via delegates.
  1581.             </summary>
  1582.         </member>
  1583.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogBackup">
  1584.             <summary>
  1585.             Enable logging of backup API errors.
  1586.             </summary>
  1587.         </member>
  1588.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoExtensionFunctions">
  1589.             <summary>
  1590.             Skip adding the extension functions provided by the native
  1591.             interop assembly.
  1592.             </summary>
  1593.         </member>
  1594.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.BindUInt32AsInt64">
  1595.             <summary>
  1596.             When binding parameter values with the <see cref="T:System.UInt32"/>
  1597.             type, use the interop method that accepts an <see cref="T:System.Int64"/>
  1598.             value.
  1599.             </summary>
  1600.         </member>
  1601.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.BindAllAsText">
  1602.             <summary>
  1603.             When binding parameter values, always bind them as though they were
  1604.             plain text (i.e. no numeric, date/time, or other conversions should
  1605.             be attempted).
  1606.             </summary>
  1607.         </member>
  1608.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.GetAllAsText">
  1609.             <summary>
  1610.             When returning column values, always return them as though they were
  1611.             plain text (i.e. no numeric, date/time, or other conversions should
  1612.             be attempted).
  1613.             </summary>
  1614.         </member>
  1615.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoLoadExtension">
  1616.             <summary>
  1617.             Prevent this <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance from
  1618.             loading extensions.
  1619.             </summary>
  1620.         </member>
  1621.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoCreateModule">
  1622.             <summary>
  1623.             Prevent this <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance from
  1624.             creating virtual table modules.
  1625.             </summary>
  1626.         </member>
  1627.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoBindFunctions">
  1628.             <summary>
  1629.             Skip binding any functions provided by other managed assemblies when
  1630.             opening the connection.
  1631.             </summary>
  1632.         </member>
  1633.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoLogModule">
  1634.             <summary>
  1635.             Skip setting the logging related properties of the
  1636.             <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance that was passed to
  1637.             the <see cref="M:System.Data.SQLite.SQLiteConnection.CreateModule(System.Data.SQLite.SQLiteModule)"/> method.
  1638.             </summary>
  1639.         </member>
  1640.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogModuleError">
  1641.             <summary>
  1642.             Enable logging of all virtual table module errors seen by the
  1643.             <see cref="M:System.Data.SQLite.SQLiteModule.SetTableError(System.IntPtr,System.String)"/> method.
  1644.             </summary>
  1645.         </member>
  1646.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogModuleException">
  1647.             <summary>
  1648.             Enable logging of certain virtual table module exceptions that cannot
  1649.             be easily discovered via other means.
  1650.             </summary>
  1651.         </member>
  1652.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.TraceWarning">
  1653.             <summary>
  1654.             Enable tracing of potentially important [non-fatal] error conditions
  1655.             that cannot be easily reported through other means.
  1656.             </summary>
  1657.         </member>
  1658.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.ConvertInvariantText">
  1659.             <summary>
  1660.             When binding parameter values, always use the invariant culture when
  1661.             converting their values from strings.
  1662.             </summary>
  1663.         </member>
  1664.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.BindInvariantText">
  1665.             <summary>
  1666.             When binding parameter values, always use the invariant culture when
  1667.             converting their values to strings.
  1668.             </summary>
  1669.         </member>
  1670.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoConnectionPool">
  1671.             <summary>
  1672.             Disable using the connection pool by default.  If the "Pooling"
  1673.             connection string property is specified, its value will override
  1674.             this flag.  The precise outcome of combining this flag with the
  1675.             <see cref="F:System.Data.SQLite.SQLiteConnectionFlags.UseConnectionPool"/> flag is unspecified; however,
  1676.             one of the flags will be in effect.
  1677.             </summary>
  1678.         </member>
  1679.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.UseConnectionPool">
  1680.             <summary>
  1681.             Enable using the connection pool by default.  If the "Pooling"
  1682.             connection string property is specified, its value will override
  1683.             this flag.  The precise outcome of combining this flag with the
  1684.             <see cref="F:System.Data.SQLite.SQLiteConnectionFlags.NoConnectionPool"/> flag is unspecified; however,
  1685.             one of the flags will be in effect.
  1686.             </summary>
  1687.         </member>
  1688.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.UseConnectionTypes">
  1689.             <summary>
  1690.             Enable using per-connection mappings between type names and
  1691.             <see cref="T:System.Data.DbType"/> values.  Also see the
  1692.             <see cref="M:System.Data.SQLite.SQLiteConnection.ClearTypeMappings"/>,
  1693.             <see cref="M:System.Data.SQLite.SQLiteConnection.GetTypeMappings"/>, and
  1694.             <see cref="M:System.Data.SQLite.SQLiteConnection.AddTypeMapping(System.String,System.Data.DbType,System.Boolean)"/> methods.  These
  1695.             per-connection mappings, when present, override the corresponding
  1696.             global mappings.
  1697.             </summary>
  1698.         </member>
  1699.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoGlobalTypes">
  1700.             <summary>
  1701.             Disable using global mappings between type names and
  1702.             <see cref="T:System.Data.DbType"/> values.  This may be useful in some very narrow
  1703.             cases; however, if there are no per-connection type mappings, the
  1704.             fallback defaults will be used for both type names and their
  1705.             associated <see cref="T:System.Data.DbType"/> values.  Therefore, use of this flag
  1706.             is not recommended.
  1707.             </summary>
  1708.         </member>
  1709.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.StickyHasRows">
  1710.             <summary>
  1711.             When the <see cref="P:System.Data.SQLite.SQLiteDataReader.HasRows"/> property is used, it
  1712.             should return non-zero if there were ever any rows in the associated
  1713.             result sets.
  1714.             </summary>
  1715.         </member>
  1716.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.StrictEnlistment">
  1717.             <summary>
  1718.             Enable "strict" transaction enlistment semantics.  Setting this flag
  1719.             will cause an exception to be thrown if an attempt is made to enlist
  1720.             in a transaction with an unavailable or unsupported isolation level.
  1721.             In the future, more extensive checks may be enabled by this flag as
  1722.             well.
  1723.             </summary>
  1724.         </member>
  1725.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.MapIsolationLevels">
  1726.             <summary>
  1727.             Enable mapping of unsupported transaction isolation levels to the
  1728.             closest supported transaction isolation level.
  1729.             </summary>
  1730.         </member>
  1731.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.DetectTextAffinity">
  1732.             <summary>
  1733.             When returning column values, attempt to detect the affinity of
  1734.             textual values by checking if they fully conform to those of the
  1735.             <see cref="F:System.Data.SQLite.TypeAffinity.Null"/>,
  1736.             <see cref="F:System.Data.SQLite.TypeAffinity.Int64"/>,
  1737.             <see cref="F:System.Data.SQLite.TypeAffinity.Double"/>,
  1738.             or <see cref="F:System.Data.SQLite.TypeAffinity.DateTime"/> types.
  1739.             </summary>
  1740.         </member>
  1741.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.DetectStringType">
  1742.             <summary>
  1743.             When returning column values, attempt to detect the type of
  1744.             string values by checking if they fully conform to those of
  1745.             the <see cref="F:System.Data.SQLite.TypeAffinity.Null"/>,
  1746.             <see cref="F:System.Data.SQLite.TypeAffinity.Int64"/>,
  1747.             <see cref="F:System.Data.SQLite.TypeAffinity.Double"/>,
  1748.             or <see cref="F:System.Data.SQLite.TypeAffinity.DateTime"/> types.
  1749.             </summary>
  1750.         </member>
  1751.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.NoConvertSettings">
  1752.             <summary>
  1753.             Skip querying runtime configuration settings for use by the
  1754.             <see cref="T:System.Data.SQLite.SQLiteConvert"/> class, including the default
  1755.             <see cref="T:System.Data.DbType"/> value and default database type name.
  1756.             <b>NOTE: If the <see cref="P:System.Data.SQLite.SQLiteConnection.DefaultDbType"/>
  1757.             and/or <see cref="P:System.Data.SQLite.SQLiteConnection.DefaultTypeName"/>
  1758.             properties are not set explicitly nor set via their connection
  1759.             string properties and repeated calls to determine these runtime
  1760.             configuration settings are seen to be a problem, this flag
  1761.             should be set.</b>
  1762.             </summary>
  1763.         </member>
  1764.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.BindAndGetAllAsText">
  1765.             <summary>
  1766.             When binding parameter values or returning column values, always
  1767.             treat them as though they were plain text (i.e. no numeric,
  1768.             date/time, or other conversions should be attempted).
  1769.             </summary>
  1770.         </member>
  1771.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.ConvertAndBindInvariantText">
  1772.             <summary>
  1773.             When binding parameter values, always use the invariant culture when
  1774.             converting their values to strings or from strings.
  1775.             </summary>
  1776.         </member>
  1777.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.BindAndGetAllAsInvariantText">
  1778.             <summary>
  1779.             When binding parameter values or returning column values, always
  1780.             treat them as though they were plain text (i.e. no numeric,
  1781.             date/time, or other conversions should be attempted) and always
  1782.             use the invariant culture when converting their values to strings.
  1783.             </summary>
  1784.         </member>
  1785.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.ConvertAndBindAndGetAllAsInvariantText">
  1786.             <summary>
  1787.             When binding parameter values or returning column values, always
  1788.             treat them as though they were plain text (i.e. no numeric,
  1789.             date/time, or other conversions should be attempted) and always
  1790.             use the invariant culture when converting their values to strings
  1791.             or from strings.
  1792.             </summary>
  1793.         </member>
  1794.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.LogAll">
  1795.             <summary>
  1796.             Enable all logging.
  1797.             </summary>
  1798.         </member>
  1799.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.Default">
  1800.             <summary>
  1801.             The default extra flags for new connections.
  1802.             </summary>
  1803.         </member>
  1804.         <member name="F:System.Data.SQLite.SQLiteConnectionFlags.DefaultAndLogAll">
  1805.             <summary>
  1806.             The default extra flags for new connections with all logging enabled.
  1807.             </summary>
  1808.         </member>
  1809.         <member name="T:System.Data.SQLite.SQLiteCommand">
  1810.             <summary>
  1811.             SQLite implementation of DbCommand.
  1812.             </summary>
  1813.         </member>
  1814.         <member name="F:System.Data.SQLite.SQLiteCommand.DefaultConnectionString">
  1815.             <summary>
  1816.             The default connection string to be used when creating a temporary
  1817.             connection to execute a command via the static
  1818.             <see cref="M:System.Data.SQLite.SQLiteCommand.Execute(System.String,System.Data.SQLite.SQLiteExecuteType,System.String,System.Object[])"/> or
  1819.             <see cref="M:System.Data.SQLite.SQLiteCommand.Execute(System.String,System.Data.SQLite.SQLiteExecuteType,System.Data.CommandBehavior,System.String,System.Object[])"/>
  1820.             methods.
  1821.             </summary>
  1822.         </member>
  1823.         <member name="F:System.Data.SQLite.SQLiteCommand._commandText">
  1824.             <summary>
  1825.             The command text this command is based on
  1826.             </summary>
  1827.         </member>
  1828.         <member name="F:System.Data.SQLite.SQLiteCommand._cnn">
  1829.             <summary>
  1830.             The connection the command is associated with
  1831.             </summary>
  1832.         </member>
  1833.         <member name="F:System.Data.SQLite.SQLiteCommand._version">
  1834.             <summary>
  1835.             The version of the connection the command is associated with
  1836.             </summary>
  1837.         </member>
  1838.         <member name="F:System.Data.SQLite.SQLiteCommand._activeReader">
  1839.             <summary>
  1840.             Indicates whether or not a DataReader is active on the command.
  1841.             </summary>
  1842.         </member>
  1843.         <member name="F:System.Data.SQLite.SQLiteCommand._commandTimeout">
  1844.             <summary>
  1845.             The timeout for the command, kludged because SQLite doesn't support per-command timeout values
  1846.             </summary>
  1847.         </member>
  1848.         <member name="F:System.Data.SQLite.SQLiteCommand._designTimeVisible">
  1849.             <summary>
  1850.             Designer support
  1851.             </summary>
  1852.         </member>
  1853.         <member name="F:System.Data.SQLite.SQLiteCommand._updateRowSource">
  1854.             <summary>
  1855.             Used by DbDataAdapter to determine updating behavior
  1856.             </summary>
  1857.         </member>
  1858.         <member name="F:System.Data.SQLite.SQLiteCommand._parameterCollection">
  1859.             <summary>
  1860.             The collection of parameters for the command
  1861.             </summary>
  1862.         </member>
  1863.         <member name="F:System.Data.SQLite.SQLiteCommand._statementList">
  1864.             <summary>
  1865.             The SQL command text, broken into individual SQL statements as they are executed
  1866.             </summary>
  1867.         </member>
  1868.         <member name="F:System.Data.SQLite.SQLiteCommand._remainingText">
  1869.             <summary>
  1870.             Unprocessed SQL text that has not been executed
  1871.             </summary>
  1872.         </member>
  1873.         <member name="F:System.Data.SQLite.SQLiteCommand._transaction">
  1874.             <summary>
  1875.             Transaction associated with this command
  1876.             </summary>
  1877.         </member>
  1878.         <member name="M:System.Data.SQLite.SQLiteCommand.#ctor">
  1879.             <overloads>
  1880.              Constructs a new SQLiteCommand
  1881.              </overloads>
  1882.              <summary>
  1883.              Default constructor
  1884.              </summary>
  1885.         </member>
  1886.         <member name="M:System.Data.SQLite.SQLiteCommand.#ctor(System.String)">
  1887.             <summary>
  1888.             Initializes the command with the given command text
  1889.             </summary>
  1890.             <param name="commandText">The SQL command text</param>
  1891.         </member>
  1892.         <member name="M:System.Data.SQLite.SQLiteCommand.#ctor(System.String,System.Data.SQLite.SQLiteConnection)">
  1893.             <summary>
  1894.             Initializes the command with the given SQL command text and attach the command to the specified
  1895.             connection.
  1896.             </summary>
  1897.             <param name="commandText">The SQL command text</param>
  1898.             <param name="connection">The connection to associate with the command</param>
  1899.         </member>
  1900.         <member name="M:System.Data.SQLite.SQLiteCommand.#ctor(System.Data.SQLite.SQLiteConnection)">
  1901.             <summary>
  1902.             Initializes the command and associates it with the specified connection.
  1903.             </summary>
  1904.             <param name="connection">The connection to associate with the command</param>
  1905.         </member>
  1906.         <member name="M:System.Data.SQLite.SQLiteCommand.#ctor(System.String,System.Data.SQLite.SQLiteConnection,System.Data.SQLite.SQLiteTransaction)">
  1907.             <summary>
  1908.             Initializes a command with the given SQL, connection and transaction
  1909.             </summary>
  1910.             <param name="commandText">The SQL command text</param>
  1911.             <param name="connection">The connection to associate with the command</param>
  1912.             <param name="transaction">The transaction the command should be associated with</param>
  1913.         </member>
  1914.         <member name="M:System.Data.SQLite.SQLiteCommand.Dispose(System.Boolean)">
  1915.             <summary>
  1916.             Disposes of the command and clears all member variables
  1917.             </summary>
  1918.             <param name="disposing">Whether or not the class is being explicitly or implicitly disposed</param>
  1919.         </member>
  1920.         <member name="M:System.Data.SQLite.SQLiteCommand.GetFlags(System.Data.SQLite.SQLiteCommand)">
  1921.             <summary>
  1922.             This method attempts to query the flags associated with the database
  1923.             connection in use.  If the database connection is disposed, the default
  1924.             flags will be returned.
  1925.             </summary>
  1926.             <param name="command">
  1927.             The command containing the databse connection to query the flags from.
  1928.             </param>
  1929.             <returns>
  1930.             The connection flags value.
  1931.             </returns>
  1932.         </member>
  1933.         <member name="M:System.Data.SQLite.SQLiteCommand.ClearCommands">
  1934.             <summary>
  1935.             Clears and destroys all statements currently prepared
  1936.             </summary>
  1937.         </member>
  1938.         <member name="M:System.Data.SQLite.SQLiteCommand.BuildNextCommand">
  1939.             <summary>
  1940.             Builds an array of prepared statements for each complete SQL statement in the command text
  1941.             </summary>
  1942.         </member>
  1943.         <member name="M:System.Data.SQLite.SQLiteCommand.Cancel">
  1944.             <summary>
  1945.             Not implemented
  1946.             </summary>
  1947.         </member>
  1948.         <member name="M:System.Data.SQLite.SQLiteCommand.CreateDbParameter">
  1949.             <summary>
  1950.             Forwards to the local CreateParameter() function
  1951.             </summary>
  1952.             <returns></returns>
  1953.         </member>
  1954.         <member name="M:System.Data.SQLite.SQLiteCommand.CreateParameter">
  1955.             <summary>
  1956.             Create a new parameter
  1957.             </summary>
  1958.             <returns></returns>
  1959.         </member>
  1960.         <member name="M:System.Data.SQLite.SQLiteCommand.InitializeForReader">
  1961.             <summary>
  1962.             This function ensures there are no active readers, that we have a valid connection,
  1963.             that the connection is open, that all statements are prepared and all parameters are assigned
  1964.             in preparation for allocating a data reader.
  1965.             </summary>
  1966.         </member>
  1967.         <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteDbDataReader(System.Data.CommandBehavior)">
  1968.             <summary>
  1969.             Creates a new SQLiteDataReader to execute/iterate the array of SQLite prepared statements
  1970.             </summary>
  1971.             <param name="behavior">The behavior the data reader should adopt</param>
  1972.             <returns>Returns a SQLiteDataReader object</returns>
  1973.         </member>
  1974.         <member name="M:System.Data.SQLite.SQLiteCommand.Execute(System.String,System.Data.SQLite.SQLiteExecuteType,System.String,System.Object[])">
  1975.             <summary>
  1976.             This method creates a new connection, executes the query using the given
  1977.             execution type, closes the connection, and returns the results.  If the
  1978.             connection string is null, a temporary in-memory database connection will
  1979.             be used.
  1980.             </summary>
  1981.             <param name="commandText">
  1982.             The text of the command to be executed.
  1983.             </param>
  1984.             <param name="executeType">
  1985.             The execution type for the command.  This is used to determine which method
  1986.             of the command object to call, which then determines the type of results
  1987.             returned, if any.
  1988.             </param>
  1989.             <param name="connectionString">
  1990.             The connection string to the database to be opened, used, and closed.  If
  1991.             this parameter is null, a temporary in-memory databse will be used.
  1992.             </param>
  1993.             <param name="args">
  1994.             The SQL parameter values to be used when building the command object to be
  1995.             executed, if any.
  1996.             </param>
  1997.             <returns>
  1998.             The results of the query -OR- null if no results were produced from the
  1999.             given execution type.
  2000.             </returns>
  2001.         </member>
  2002.         <member name="M:System.Data.SQLite.SQLiteCommand.Execute(System.String,System.Data.SQLite.SQLiteExecuteType,System.Data.CommandBehavior,System.String,System.Object[])">
  2003.             <summary>
  2004.             This method creates a new connection, executes the query using the given
  2005.             execution type and command behavior, closes the connection, and returns
  2006.             the results.  If the connection string is null, a temporary in-memory
  2007.             database connection will be used.
  2008.             </summary>
  2009.             <param name="commandText">
  2010.             The text of the command to be executed.
  2011.             </param>
  2012.             <param name="executeType">
  2013.             The execution type for the command.  This is used to determine which method
  2014.             of the command object to call, which then determines the type of results
  2015.             returned, if any.
  2016.             </param>
  2017.             <param name="commandBehavior">
  2018.             The command behavior flags for the command.
  2019.             </param>
  2020.             <param name="connectionString">
  2021.             The connection string to the database to be opened, used, and closed.  If
  2022.             this parameter is null, a temporary in-memory databse will be used.
  2023.             </param>
  2024.             <param name="args">
  2025.             The SQL parameter values to be used when building the command object to be
  2026.             executed, if any.
  2027.             </param>
  2028.             <returns>
  2029.             The results of the query -OR- null if no results were produced from the
  2030.             given execution type.
  2031.             </returns>
  2032.         </member>
  2033.         <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteReader(System.Data.CommandBehavior)">
  2034.             <summary>
  2035.             Overrides the default behavior to return a SQLiteDataReader specialization class
  2036.             </summary>
  2037.             <param name="behavior">The flags to be associated with the reader.</param>
  2038.             <returns>A SQLiteDataReader</returns>
  2039.         </member>
  2040.         <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteReader">
  2041.             <summary>
  2042.             Overrides the default behavior of DbDataReader to return a specialized SQLiteDataReader class
  2043.             </summary>
  2044.             <returns>A SQLiteDataReader</returns>
  2045.         </member>
  2046.         <member name="M:System.Data.SQLite.SQLiteCommand.ClearDataReader">
  2047.             <summary>
  2048.             Called by the SQLiteDataReader when the data reader is closed.
  2049.             </summary>
  2050.         </member>
  2051.         <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteNonQuery">
  2052.             <summary>
  2053.             Execute the command and return the number of rows inserted/updated affected by it.
  2054.             </summary>
  2055.             <returns>The number of rows inserted/updated affected by it.</returns>
  2056.         </member>
  2057.         <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteNonQuery(System.Data.CommandBehavior)">
  2058.             <summary>
  2059.             Execute the command and return the number of rows inserted/updated affected by it.
  2060.             </summary>
  2061.             <param name="behavior">The flags to be associated with the reader.</param>
  2062.             <returns>The number of rows inserted/updated affected by it.</returns>
  2063.         </member>
  2064.         <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteScalar">
  2065.             <summary>
  2066.             Execute the command and return the first column of the first row of the resultset
  2067.             (if present), or null if no resultset was returned.
  2068.             </summary>
  2069.             <returns>The first column of the first row of the first resultset from the query.</returns>
  2070.         </member>
  2071.         <member name="M:System.Data.SQLite.SQLiteCommand.ExecuteScalar(System.Data.CommandBehavior)">
  2072.             <summary>
  2073.             Execute the command and return the first column of the first row of the resultset
  2074.             (if present), or null if no resultset was returned.
  2075.             </summary>
  2076.             <param name="behavior">The flags to be associated with the reader.</param>
  2077.             <returns>The first column of the first row of the first resultset from the query.</returns>
  2078.         </member>
  2079.         <member name="M:System.Data.SQLite.SQLiteCommand.Prepare">
  2080.             <summary>
  2081.             Does nothing.  Commands are prepared as they are executed the first time, and kept in prepared state afterwards.
  2082.             </summary>
  2083.         </member>
  2084.         <member name="M:System.Data.SQLite.SQLiteCommand.Clone">
  2085.             <summary>
  2086.             Clones a command, including all its parameters
  2087.             </summary>
  2088.             <returns>A new SQLiteCommand with the same commandtext, connection and parameters</returns>
  2089.         </member>
  2090.         <member name="P:System.Data.SQLite.SQLiteCommand.CommandText">
  2091.             <summary>
  2092.             The SQL command text associated with the command
  2093.             </summary>
  2094.         </member>
  2095.         <member name="P:System.Data.SQLite.SQLiteCommand.CommandTimeout">
  2096.             <summary>
  2097.             The amount of time to wait for the connection to become available before erroring out
  2098.             </summary>
  2099.         </member>
  2100.         <member name="P:System.Data.SQLite.SQLiteCommand.CommandType">
  2101.             <summary>
  2102.             The type of the command.  SQLite only supports CommandType.Text
  2103.             </summary>
  2104.         </member>
  2105.         <member name="P:System.Data.SQLite.SQLiteCommand.Connection">
  2106.             <summary>
  2107.             The connection associated with this command
  2108.             </summary>
  2109.         </member>
  2110.         <member name="P:System.Data.SQLite.SQLiteCommand.DbConnection">
  2111.             <summary>
  2112.             Forwards to the local Connection property
  2113.             </summary>
  2114.         </member>
  2115.         <member name="P:System.Data.SQLite.SQLiteCommand.Parameters">
  2116.             <summary>
  2117.             Returns the SQLiteParameterCollection for the given command
  2118.             </summary>
  2119.         </member>
  2120.         <member name="P:System.Data.SQLite.SQLiteCommand.DbParameterCollection">
  2121.             <summary>
  2122.             Forwards to the local Parameters property
  2123.             </summary>
  2124.         </member>
  2125.         <member name="P:System.Data.SQLite.SQLiteCommand.Transaction">
  2126.             <summary>
  2127.             The transaction associated with this command.  SQLite only supports one transaction per connection, so this property forwards to the
  2128.             command's underlying connection.
  2129.             </summary>
  2130.         </member>
  2131.         <member name="P:System.Data.SQLite.SQLiteCommand.DbTransaction">
  2132.             <summary>
  2133.             Forwards to the local Transaction property
  2134.             </summary>
  2135.         </member>
  2136.         <member name="P:System.Data.SQLite.SQLiteCommand.UpdatedRowSource">
  2137.             <summary>
  2138.             Sets the method the SQLiteCommandBuilder uses to determine how to update inserted or updated rows in a DataTable.
  2139.             </summary>
  2140.         </member>
  2141.         <member name="P:System.Data.SQLite.SQLiteCommand.DesignTimeVisible">
  2142.             <summary>
  2143.             Determines if the command is visible at design time.  Defaults to True.
  2144.             </summary>
  2145.         </member>
  2146.         <member name="T:System.Data.SQLite.SQLiteCommandBuilder">
  2147.             <summary>
  2148.             SQLite implementation of DbCommandBuilder.
  2149.             </summary>
  2150.         </member>
  2151.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.#ctor">
  2152.             <summary>
  2153.             Default constructor
  2154.             </summary>
  2155.         </member>
  2156.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.#ctor(System.Data.SQLite.SQLiteDataAdapter)">
  2157.             <summary>
  2158.             Initializes the command builder and associates it with the specified data adapter.
  2159.             </summary>
  2160.             <param name="adp"></param>
  2161.         </member>
  2162.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.ApplyParameterInfo(System.Data.Common.DbParameter,System.Data.DataRow,System.Data.StatementType,System.Boolean)">
  2163.             <summary>
  2164.             Minimal amount of parameter processing.  Primarily sets the DbType for the parameter equal to the provider type in the schema
  2165.             </summary>
  2166.             <param name="parameter">The parameter to use in applying custom behaviors to a row</param>
  2167.             <param name="row">The row to apply the parameter to</param>
  2168.             <param name="statementType">The type of statement</param>
  2169.             <param name="whereClause">Whether the application of the parameter is part of a WHERE clause</param>
  2170.         </member>
  2171.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetParameterName(System.String)">
  2172.             <summary>
  2173.             Returns a valid named parameter
  2174.             </summary>
  2175.             <param name="parameterName">The name of the parameter</param>
  2176.             <returns>Error</returns>
  2177.         </member>
  2178.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetParameterName(System.Int32)">
  2179.             <summary>
  2180.             Returns a named parameter for the given ordinal
  2181.             </summary>
  2182.             <param name="parameterOrdinal">The i of the parameter</param>
  2183.             <returns>Error</returns>
  2184.         </member>
  2185.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetParameterPlaceholder(System.Int32)">
  2186.             <summary>
  2187.             Returns a placeholder character for the specified parameter i.
  2188.             </summary>
  2189.             <param name="parameterOrdinal">The index of the parameter to provide a placeholder for</param>
  2190.             <returns>Returns a named parameter</returns>
  2191.         </member>
  2192.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.SetRowUpdatingHandler(System.Data.Common.DbDataAdapter)">
  2193.             <summary>
  2194.             Sets the handler for receiving row updating events.  Used by the DbCommandBuilder to autogenerate SQL
  2195.             statements that may not have previously been generated.
  2196.             </summary>
  2197.             <param name="adapter">A data adapter to receive events on.</param>
  2198.         </member>
  2199.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetDeleteCommand">
  2200.             <summary>
  2201.             Returns the automatically-generated SQLite command to delete rows from the database
  2202.             </summary>
  2203.             <returns></returns>
  2204.         </member>
  2205.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetDeleteCommand(System.Boolean)">
  2206.             <summary>
  2207.             Returns the automatically-generated SQLite command to delete rows from the database
  2208.             </summary>
  2209.             <param name="useColumnsForParameterNames"></param>
  2210.             <returns></returns>
  2211.         </member>
  2212.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetUpdateCommand">
  2213.             <summary>
  2214.             Returns the automatically-generated SQLite command to update rows in the database
  2215.             </summary>
  2216.             <returns></returns>
  2217.         </member>
  2218.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetUpdateCommand(System.Boolean)">
  2219.             <summary>
  2220.             Returns the automatically-generated SQLite command to update rows in the database
  2221.             </summary>
  2222.             <param name="useColumnsForParameterNames"></param>
  2223.             <returns></returns>
  2224.         </member>
  2225.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetInsertCommand">
  2226.             <summary>
  2227.             Returns the automatically-generated SQLite command to insert rows into the database
  2228.             </summary>
  2229.             <returns></returns>
  2230.         </member>
  2231.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetInsertCommand(System.Boolean)">
  2232.             <summary>
  2233.             Returns the automatically-generated SQLite command to insert rows into the database
  2234.             </summary>
  2235.             <param name="useColumnsForParameterNames"></param>
  2236.             <returns></returns>
  2237.         </member>
  2238.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.QuoteIdentifier(System.String)">
  2239.             <summary>
  2240.             Places brackets around an identifier
  2241.             </summary>
  2242.             <param name="unquotedIdentifier">The identifier to quote</param>
  2243.             <returns>The bracketed identifier</returns>
  2244.         </member>
  2245.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.UnquoteIdentifier(System.String)">
  2246.             <summary>
  2247.             Removes brackets around an identifier
  2248.             </summary>
  2249.             <param name="quotedIdentifier">The quoted (bracketed) identifier</param>
  2250.             <returns>The undecorated identifier</returns>
  2251.         </member>
  2252.         <member name="M:System.Data.SQLite.SQLiteCommandBuilder.GetSchemaTable(System.Data.Common.DbCommand)">
  2253.             <summary>
  2254.             Override helper, which can help the base command builder choose the right keys for the given query
  2255.             </summary>
  2256.             <param name="sourceCommand"></param>
  2257.             <returns></returns>
  2258.         </member>
  2259.         <member name="P:System.Data.SQLite.SQLiteCommandBuilder.DataAdapter">
  2260.             <summary>
  2261.             Gets/sets the DataAdapter for this CommandBuilder
  2262.             </summary>
  2263.         </member>
  2264.         <member name="P:System.Data.SQLite.SQLiteCommandBuilder.CatalogLocation">
  2265.             <summary>
  2266.             Overridden to hide its property from the designer
  2267.             </summary>
  2268.         </member>
  2269.         <member name="P:System.Data.SQLite.SQLiteCommandBuilder.CatalogSeparator">
  2270.             <summary>
  2271.             Overridden to hide its property from the designer
  2272.             </summary>
  2273.         </member>
  2274.         <member name="P:System.Data.SQLite.SQLiteCommandBuilder.QuotePrefix">
  2275.             <summary>
  2276.             Overridden to hide its property from the designer
  2277.             </summary>
  2278.         </member>
  2279.         <member name="P:System.Data.SQLite.SQLiteCommandBuilder.QuoteSuffix">
  2280.             <summary>
  2281.             Overridden to hide its property from the designer
  2282.             </summary>
  2283.         </member>
  2284.         <member name="P:System.Data.SQLite.SQLiteCommandBuilder.SchemaSeparator">
  2285.             <summary>
  2286.             Overridden to hide its property from the designer
  2287.             </summary>
  2288.         </member>
  2289.         <member name="T:System.Data.SQLite.ConnectionEventArgs">
  2290.             <summary>
  2291.             Event data for connection event handlers.
  2292.             </summary>
  2293.         </member>
  2294.         <member name="F:System.Data.SQLite.ConnectionEventArgs.EventType">
  2295.             <summary>
  2296.             The type of event being raised.
  2297.             </summary>
  2298.         </member>
  2299.         <member name="F:System.Data.SQLite.ConnectionEventArgs.EventArgs">
  2300.             <summary>
  2301.             The <see cref="T:System.Data.StateChangeEventArgs"/> associated with this event, if any.
  2302.             </summary>
  2303.         </member>
  2304.         <member name="F:System.Data.SQLite.ConnectionEventArgs.Transaction">
  2305.             <summary>
  2306.             The transaction associated with this event, if any.
  2307.             </summary>
  2308.         </member>
  2309.         <member name="F:System.Data.SQLite.ConnectionEventArgs.Command">
  2310.             <summary>
  2311.             The command associated with this event, if any.
  2312.             </summary>
  2313.         </member>
  2314.         <member name="F:System.Data.SQLite.ConnectionEventArgs.DataReader">
  2315.             <summary>
  2316.             The data reader associated with this event, if any.
  2317.             </summary>
  2318.         </member>
  2319.         <member name="F:System.Data.SQLite.ConnectionEventArgs.CriticalHandle">
  2320.             <summary>
  2321.             The critical handle associated with this event, if any.
  2322.             </summary>
  2323.         </member>
  2324.         <member name="F:System.Data.SQLite.ConnectionEventArgs.Text">
  2325.             <summary>
  2326.             Command or message text associated with this event, if any.
  2327.             </summary>
  2328.         </member>
  2329.         <member name="F:System.Data.SQLite.ConnectionEventArgs.Data">
  2330.             <summary>
  2331.             Extra data associated with this event, if any.
  2332.             </summary>
  2333.         </member>
  2334.         <member name="M:System.Data.SQLite.ConnectionEventArgs.#ctor(System.Data.SQLite.SQLiteConnectionEventType,System.Data.StateChangeEventArgs,System.Data.IDbTransaction,System.Data.IDbCommand,System.Data.IDataReader,System.Runtime.InteropServices.CriticalHandle,System.String,System.Object)">
  2335.             <summary>
  2336.             Constructs the object.
  2337.             </summary>
  2338.             <param name="eventType">The type of event being raised.</param>
  2339.             <param name="eventArgs">The base <see cref="F:System.Data.SQLite.ConnectionEventArgs.EventArgs"/> associated
  2340.             with this event, if any.</param>
  2341.             <param name="transaction">The transaction associated with this event, if any.</param>
  2342.             <param name="command">The command associated with this event, if any.</param>
  2343.             <param name="dataReader">The data reader associated with this event, if any.</param>
  2344.             <param name="criticalHandle">The critical handle associated with this event, if any.</param>
  2345.             <param name="text">The command or message text, if any.</param>
  2346.             <param name="data">The extra data, if any.</param>
  2347.         </member>
  2348.         <member name="T:System.Data.SQLite.SQLiteConnectionEventHandler">
  2349.             <summary>
  2350.             Raised when an event pertaining to a connection occurs.
  2351.             </summary>
  2352.             <param name="sender">The connection involved.</param>
  2353.             <param name="e">Extra information about the event.</param>
  2354.         </member>
  2355.         <member name="T:System.Data.SQLite.SQLiteConnection">
  2356.             <summary>
  2357.             SQLite implentation of DbConnection.
  2358.             </summary>
  2359.             <remarks>
  2360.             The <see cref="P:System.Data.SQLite.SQLiteConnection.ConnectionString"/> property can contain the following parameter(s), delimited with a semi-colon:
  2361.             <list type="table">
  2362.             <listheader>
  2363.             <term>Parameter</term>
  2364.             <term>Values</term>
  2365.             <term>Required</term>
  2366.             <term>Default</term>
  2367.             </listheader>
  2368.             <item>
  2369.             <description>Data Source</description>
  2370.             <description>
  2371.             This may be a file name, the string ":memory:", or any supported URI (starting with SQLite 3.7.7).
  2372.             Starting with release 1.0.86.0, in order to use more than one consecutive backslash (e.g. for a
  2373.             UNC path), each of the adjoining backslash characters must be doubled (e.g. "\\Network\Share\test.db"
  2374.             would become "\\\\Network\Share\test.db").
  2375.             </description>
  2376.             <description>Y</description>
  2377.             <description></description>
  2378.             </item>
  2379.             <item>
  2380.             <description>Version</description>
  2381.             <description>3</description>
  2382.             <description>N</description>
  2383.             <description>3</description>
  2384.             </item>
  2385.             <item>
  2386.             <description>UseUTF16Encoding</description>
  2387.             <description><b>True</b><br/><b>False</b></description>
  2388.             <description>N</description>
  2389.             <description>False</description>
  2390.             </item>
  2391.             <item>
  2392.             <description>DateTimeFormat</description>
  2393.             <description>
  2394.             <b>Ticks</b> - Use the value of DateTime.Ticks.<br/>
  2395.             <b>ISO8601</b> - Use the ISO-8601 format.  Uses the "yyyy-MM-dd HH:mm:ss.FFFFFFFK" format for UTC
  2396.             DateTime values and "yyyy-MM-dd HH:mm:ss.FFFFFFF" format for local DateTime values).<br/>
  2397.             <b>JulianDay</b> - The interval of time in days and fractions of a day since January 1, 4713 BC.<br/>
  2398.             <b>UnixEpoch</b> - The whole number of seconds since the Unix epoch (January 1, 1970).<br/>
  2399.             <b>InvariantCulture</b> - Any culture-independent string value that the .NET Framework can interpret as a valid DateTime.<br/>
  2400.             <b>CurrentCulture</b> - Any string value that the .NET Framework can interpret as a valid DateTime using the current culture.</description>
  2401.             <description>N</description>
  2402.             <description>ISO8601</description>
  2403.             </item>
  2404.             <item>
  2405.             <description>DateTimeKind</description>
  2406.             <description><b>Unspecified</b> - Not specified as either UTC or local time.<br/><b>Utc</b> - The time represented is UTC.<br/><b>Local</b> - The time represented is local time.</description>
  2407.             <description>N</description>
  2408.             <description>Unspecified</description>
  2409.             </item>
  2410.             <item>
  2411.             <description>DateTimeFormatString</description>
  2412.             <description>The exact DateTime format string to use for all formatting and parsing of all DateTime
  2413.             values for this connection.</description>
  2414.             <description>N</description>
  2415.             <description>null</description>
  2416.             </item>
  2417.             <item>
  2418.             <description>BaseSchemaName</description>
  2419.             <description>Some base data classes in the framework (e.g. those that build SQL queries dynamically)
  2420.             assume that an ADO.NET provider cannot support an alternate catalog (i.e. database) without supporting
  2421.             alternate schemas as well; however, SQLite does not fit into this model.  Therefore, this value is used
  2422.             as a placeholder and removed prior to preparing any SQL statements that may contain it.</description>
  2423.             <description>N</description>
  2424.             <description>sqlite_default_schema</description>
  2425.             </item>
  2426.             <item>
  2427.             <description>BinaryGUID</description>
  2428.             <description><b>True</b> - Store GUID columns in binary form<br/><b>False</b> - Store GUID columns as text</description>
  2429.             <description>N</description>
  2430.             <description>True</description>
  2431.             </item>
  2432.             <item>
  2433.             <description>Cache Size</description>
  2434.             <description>{size in bytes}</description>
  2435.             <description>N</description>
  2436.             <description>2000</description>
  2437.             </item>
  2438.             <item>
  2439.             <description>Synchronous</description>
  2440.             <description><b>Normal</b> - Normal file flushing behavior<br/><b>Full</b> - Full flushing after all writes<br/><b>Off</b> - Underlying OS flushes I/O's</description>
  2441.             <description>N</description>
  2442.             <description>Full</description>
  2443.             </item>
  2444.             <item>
  2445.             <description>Page Size</description>
  2446.             <description>{size in bytes}</description>
  2447.             <description>N</description>
  2448.             <description>1024</description>
  2449.             </item>
  2450.             <item>
  2451.             <description>Password</description>
  2452.             <description>{password} - Using this parameter requires that the CryptoAPI based codec be enabled at compile-time for both the native interop assembly and the core managed assemblies; otherwise, using this parameter may result in an exception being thrown when attempting to open the connection.</description>
  2453.             <description>N</description>
  2454.             <description></description>
  2455.             </item>
  2456.             <item>
  2457.             <description>HexPassword</description>
  2458.             <description>{hexPassword} - Must contain a sequence of zero or more hexadecimal encoded byte values without a leading "0x" prefix.  Using this parameter requires that the CryptoAPI based codec be enabled at compile-time for both the native interop assembly and the core managed assemblies; otherwise, using this parameter may result in an exception being thrown when attempting to open the connection.</description>
  2459.             <description>N</description>
  2460.             <description></description>
  2461.             </item>
  2462.             <item>
  2463.             <description>Enlist</description>
  2464.             <description><b>Y</b> - Automatically enlist in distributed transactions<br/><b>N</b> - No automatic enlistment</description>
  2465.             <description>N</description>
  2466.             <description>Y</description>
  2467.             </item>
  2468.             <item>
  2469.             <description>Pooling</description>
  2470.             <description>
  2471.             <b>True</b> - Use connection pooling.<br/>
  2472.             <b>False</b> - Do not use connection pooling.<br/><br/>
  2473.             <b>WARNING:</b> When using the default connection pool implementation,
  2474.             setting this property to True should be avoided by applications that make
  2475.             use of COM (either directly or indirectly) due to possible deadlocks that
  2476.             can occur during the finalization of some COM objects.
  2477.             </description>
  2478.             <description>N</description>
  2479.             <description>False</description>
  2480.             </item>
  2481.             <item>
  2482.             <description>FailIfMissing</description>
  2483.             <description><b>True</b> - Don't create the database if it does not exist, throw an error instead<br/><b>False</b> - Automatically create the database if it does not exist</description>
  2484.             <description>N</description>
  2485.             <description>False</description>
  2486.             </item>
  2487.             <item>
  2488.             <description>Max Page Count</description>
  2489.             <description>{size in pages} - Limits the maximum number of pages (limits the size) of the database</description>
  2490.             <description>N</description>
  2491.             <description>0</description>
  2492.             </item>
  2493.             <item>
  2494.             <description>Legacy Format</description>
  2495.             <description><b>True</b> - Use the more compatible legacy 3.x database format<br/><b>False</b> - Use the newer 3.3x database format which compresses numbers more effectively</description>
  2496.             <description>N</description>
  2497.             <description>False</description>
  2498.             </item>
  2499.             <item>
  2500.             <description>Default Timeout</description>
  2501.             <description>{time in seconds}<br/>The default command timeout</description>
  2502.             <description>N</description>
  2503.             <description>30</description>
  2504.             </item>
  2505.             <item>
  2506.             <description>Journal Mode</description>
  2507.             <description><b>Delete</b> - Delete the journal file after a commit<br/><b>Persist</b> - Zero out and leave the journal file on disk after a commit<br/><b>Off</b> - Disable the rollback journal entirely</description>
  2508.             <description>N</description>
  2509.             <description>Delete</description>
  2510.             </item>
  2511.             <item>
  2512.             <description>Read Only</description>
  2513.             <description><b>True</b> - Open the database for read only access<br/><b>False</b> - Open the database for normal read/write access</description>
  2514.             <description>N</description>
  2515.             <description>False</description>
  2516.             </item>
  2517.             <item>
  2518.             <description>Max Pool Size</description>
  2519.             <description>The maximum number of connections for the given connection string that can be in the connection pool</description>
  2520.             <description>N</description>
  2521.             <description>100</description>
  2522.             </item>
  2523.             <item>
  2524.             <description>Default IsolationLevel</description>
  2525.             <description>The default transaciton isolation level</description>
  2526.             <description>N</description>
  2527.             <description>Serializable</description>
  2528.             </item>
  2529.             <item>
  2530.             <description>Foreign Keys</description>
  2531.             <description>Enable foreign key constraints</description>
  2532.             <description>N</description>
  2533.             <description>False</description>
  2534.             </item>
  2535.             <item>
  2536.             <description>Flags</description>
  2537.             <description>Extra behavioral flags for the connection.  See the <see cref="T:System.Data.SQLite.SQLiteConnectionFlags"/> enumeration for possible values.</description>
  2538.             <description>N</description>
  2539.             <description>Default</description>
  2540.             </item>
  2541.             <item>
  2542.             <description>SetDefaults</description>
  2543.             <description>
  2544.             <b>True</b> - Apply the default connection settings to the opened database.<br/>
  2545.             <b>False</b> - Skip applying the default connection settings to the opened database.
  2546.             </description>
  2547.             <description>N</description>
  2548.             <description>True</description>
  2549.             </item>
  2550.             <item>
  2551.             <description>ToFullPath</description>
  2552.             <description>
  2553.             <b>True</b> - Attempt to expand the data source file name to a fully qualified path before opening.<br/>
  2554.             <b>False</b> - Skip attempting to expand the data source file name to a fully qualified path before opening.
  2555.             </description>
  2556.             <description>N</description>
  2557.             <description>True</description>
  2558.             </item>
  2559.             </list>
  2560.             </remarks>
  2561.         </member>
  2562.         <member name="F:System.Data.SQLite.SQLiteConnection.BadDbType">
  2563.             <summary>
  2564.             The "invalid value" for the <see cref="T:System.Data.DbType"/> enumeration used
  2565.             by the <see cref="P:System.Data.SQLite.SQLiteConnection.DefaultDbType"/> property.  This constant is shared
  2566.             by this class and the SQLiteConnectionStringBuilder class.
  2567.             </summary>
  2568.         </member>
  2569.         <member name="F:System.Data.SQLite.SQLiteConnection.DefaultBaseSchemaName">
  2570.             <summary>
  2571.             The default "stub" (i.e. placeholder) base schema name to use when
  2572.             returning column schema information.  Used as the initial value of
  2573.             the BaseSchemaName property.  This should start with "sqlite_*"
  2574.             because those names are reserved for use by SQLite (i.e. they cannot
  2575.             be confused with the names of user objects).
  2576.             </summary>
  2577.         </member>
  2578.         <member name="F:System.Data.SQLite.SQLiteConnection._assembly">
  2579.             <summary>
  2580.             The managed assembly containing this type.
  2581.             </summary>
  2582.         </member>
  2583.         <member name="F:System.Data.SQLite.SQLiteConnection._syncRoot">
  2584.             <summary>
  2585.             Object used to synchronize access to the static instance data
  2586.             for this class.
  2587.             </summary>
  2588.         </member>
  2589.         <member name="F:System.Data.SQLite.SQLiteConnection._sharedFlags">
  2590.             <summary>
  2591.             The extra connection flags to be used for all opened connections.
  2592.             </summary>
  2593.         </member>
  2594.         <member name="F:System.Data.SQLite.SQLiteConnection._connectionState">
  2595.             <summary>
  2596.             State of the current connection
  2597.             </summary>
  2598.         </member>
  2599.         <member name="F:System.Data.SQLite.SQLiteConnection._connectionString">
  2600.             <summary>
  2601.             The connection string
  2602.             </summary>
  2603.         </member>
  2604.         <member name="F:System.Data.SQLite.SQLiteConnection._transactionLevel">
  2605.             <summary>
  2606.             Nesting level of the transactions open on the connection
  2607.             </summary>
  2608.         </member>
  2609.         <member name="F:System.Data.SQLite.SQLiteConnection._disposing">
  2610.             <summary>
  2611.             If set, then the connection is currently being disposed.
  2612.             </summary>
  2613.         </member>
  2614.         <member name="F:System.Data.SQLite.SQLiteConnection._defaultIsolation">
  2615.             <summary>
  2616.             The default isolation level for new transactions
  2617.             </summary>
  2618.         </member>
  2619.         <member name="F:System.Data.SQLite.SQLiteConnection._enlistment">
  2620.             <summary>
  2621.             Whether or not the connection is enlisted in a distrubuted transaction
  2622.             </summary>
  2623.         </member>
  2624.         <member name="F:System.Data.SQLite.SQLiteConnection._typeNames">
  2625.             <summary>
  2626.             The per-connection mappings between type names and <see cref="T:System.Data.DbType"/>
  2627.             values.  These mappings override the corresponding global mappings.
  2628.             </summary>
  2629.         </member>
  2630.         <member name="F:System.Data.SQLite.SQLiteConnection._sql">
  2631.             <summary>
  2632.             The base SQLite object to interop with
  2633.             </summary>
  2634.         </member>
  2635.         <member name="F:System.Data.SQLite.SQLiteConnection._dataSource">
  2636.             <summary>
  2637.             The database filename minus path and extension
  2638.             </summary>
  2639.         </member>
  2640.         <member name="F:System.Data.SQLite.SQLiteConnection._password">
  2641.             <summary>
  2642.             Temporary password storage, emptied after the database has been opened
  2643.             </summary>
  2644.         </member>
  2645.         <member name="F:System.Data.SQLite.SQLiteConnection._baseSchemaName">
  2646.             <summary>
  2647.             The "stub" (i.e. placeholder) base schema name to use when returning
  2648.             column schema information.
  2649.             </summary>
  2650.         </member>
  2651.         <member name="F:System.Data.SQLite.SQLiteConnection._flags">
  2652.             <summary>
  2653.             The extra behavioral flags for this connection, if any.  See the
  2654.             <see cref="T:System.Data.SQLite.SQLiteConnectionFlags"/> enumeration for a list of
  2655.             possible values.
  2656.             </summary>
  2657.         </member>
  2658.         <member name="F:System.Data.SQLite.SQLiteConnection._cachedSettings">
  2659.             <summary>
  2660.             The cached values for all settings that have been fetched on behalf
  2661.             of this connection.  This cache may be cleared by calling the
  2662.             <see cref="M:System.Data.SQLite.SQLiteConnection.ClearCachedSettings"/> method.
  2663.             </summary>
  2664.         </member>
  2665.         <member name="F:System.Data.SQLite.SQLiteConnection._defaultDbType">
  2666.             <summary>
  2667.             The default databse type for this connection.  This value will only
  2668.             be used if the <see cref="F:System.Data.SQLite.SQLiteConnectionFlags.UseConnectionTypes"/>
  2669.             flag is set.
  2670.             </summary>
  2671.         </member>
  2672.         <member name="F:System.Data.SQLite.SQLiteConnection._defaultTypeName">
  2673.             <summary>
  2674.             The default databse type name for this connection.  This value will only
  2675.             be used if the <see cref="F:System.Data.SQLite.SQLiteConnectionFlags.UseConnectionTypes"/>
  2676.             flag is set.
  2677.             </summary>
  2678.         </member>
  2679.         <member name="F:System.Data.SQLite.SQLiteConnection._defaultTimeout">
  2680.             <summary>
  2681.             Default command timeout
  2682.             </summary>
  2683.         </member>
  2684.         <member name="F:System.Data.SQLite.SQLiteConnection._parseViaFramework">
  2685.             <summary>
  2686.             Non-zero if the built-in (i.e. framework provided) connection string
  2687.             parser should be used when opening the connection.
  2688.             </summary>
  2689.         </member>
  2690.         <member name="M:System.Data.SQLite.SQLiteConnection.#ctor">
  2691.             <overloads>
  2692.              Constructs a new SQLiteConnection object
  2693.              </overloads>
  2694.              <summary>
  2695.              Default constructor
  2696.              </summary>
  2697.         </member>
  2698.         <member name="M:System.Data.SQLite.SQLiteConnection.#ctor(System.String)">
  2699.             <summary>
  2700.             Initializes the connection with the specified connection string.
  2701.             </summary>
  2702.             <param name="connectionString">The connection string to use.</param>
  2703.         </member>
  2704.         <member name="M:System.Data.SQLite.SQLiteConnection.#ctor(System.IntPtr,System.String,System.Boolean)">
  2705.             <summary>
  2706.             Initializes the connection with a pre-existing native connection handle.
  2707.             This constructor overload is intended to be used only by the private
  2708.             <see cref="M:System.Data.SQLite.SQLiteModule.CreateOrConnect(System.Boolean,System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  2709.             </summary>
  2710.             <param name="db">
  2711.             The native connection handle to use.
  2712.             </param>
  2713.             <param name="fileName">
  2714.             The file name corresponding to the native connection handle.
  2715.             </param>
  2716.             <param name="ownHandle">
  2717.             Non-zero if this instance owns the native connection handle and
  2718.             should dispose of it when it is no longer needed.
  2719.             </param>
  2720.         </member>
  2721.         <member name="M:System.Data.SQLite.SQLiteConnection.#ctor(System.String,System.Boolean)">
  2722.             <summary>
  2723.             Initializes the connection with the specified connection string.
  2724.             </summary>
  2725.             <param name="connectionString">
  2726.             The connection string to use.
  2727.             </param>
  2728.             <param name="parseViaFramework">
  2729.             Non-zero to parse the connection string using the built-in (i.e.
  2730.             framework provided) parser when opening the connection.
  2731.             </param>
  2732.         </member>
  2733.         <member name="M:System.Data.SQLite.SQLiteConnection.#ctor(System.Data.SQLite.SQLiteConnection)">
  2734.             <summary>
  2735.             Clones the settings and connection string from an existing connection.  If the existing connection is already open, this
  2736.             function will open its own connection, enumerate any attached databases of the original connection, and automatically
  2737.             attach to them.
  2738.             </summary>
  2739.             <param name="connection">The connection to copy the settings from.</param>
  2740.         </member>
  2741.         <member name="M:System.Data.SQLite.SQLiteConnection.OnChanged(System.Data.SQLite.SQLiteConnection,System.Data.SQLite.ConnectionEventArgs)">
  2742.             <summary>
  2743.             Raises the <see cref="E:System.Data.SQLite.SQLiteConnection.Changed"/> event.
  2744.             </summary>
  2745.             <param name="connection">
  2746.             The connection associated with this event.  If this parameter is not
  2747.             null and the specified connection cannot raise events, then the
  2748.             registered event handlers will not be invoked.
  2749.             </param>
  2750.             <param name="e">
  2751.             A <see cref="T:System.Data.SQLite.ConnectionEventArgs"/> that contains the event data.
  2752.             </param>
  2753.         </member>
  2754.         <member name="M:System.Data.SQLite.SQLiteConnection.CreateHandle(System.IntPtr)">
  2755.             <summary>
  2756.             Creates and returns a new managed database connection handle.  This
  2757.             method is intended to be used by implementations of the
  2758.             <see cref="T:System.Data.SQLite.ISQLiteConnectionPool"/> interface only.  In theory, it
  2759.             could be used by other classes; however, that usage is not supported.
  2760.             </summary>
  2761.             <param name="nativeHandle">
  2762.             This must be a native database connection handle returned by the
  2763.             SQLite core library and it must remain valid and open during the
  2764.             entire duration of the calling method.
  2765.             </param>
  2766.             <returns>
  2767.             The new managed database connection handle or null if it cannot be
  2768.             created.
  2769.             </returns>
  2770.         </member>
  2771.         <member name="M:System.Data.SQLite.SQLiteConnection.BackupDatabase(System.Data.SQLite.SQLiteConnection,System.String,System.String,System.Int32,System.Data.SQLite.SQLiteBackupCallback,System.Int32)">
  2772.             <summary>
  2773.             Backs up the database, using the specified database connection as the
  2774.             destination.
  2775.             </summary>
  2776.             <param name="destination">The destination database connection.</param>
  2777.             <param name="destinationName">The destination database name.</param>
  2778.             <param name="sourceName">The source database name.</param>
  2779.             <param name="pages">
  2780.             The number of pages to copy or negative to copy all remaining pages.
  2781.             </param>
  2782.             <param name="callback">
  2783.             The method to invoke between each step of the backup process.  This
  2784.             parameter may be null (i.e. no callbacks will be performed).
  2785.             </param>
  2786.             <param name="retryMilliseconds">
  2787.             The number of milliseconds to sleep after encountering a locking error
  2788.             during the backup process.  A value less than zero means that no sleep
  2789.             should be performed.
  2790.             </param>
  2791.         </member>
  2792.         <member name="M:System.Data.SQLite.SQLiteConnection.ClearCachedSettings">
  2793.             <summary>
  2794.             Clears the per-connection cached settings.
  2795.             </summary>
  2796.             <returns>
  2797.             The total number of per-connection settings cleared.
  2798.             </returns>
  2799.         </member>
  2800.         <member name="M:System.Data.SQLite.SQLiteConnection.TryGetCachedSetting(System.String,System.String,System.Object@)">
  2801.             <summary>
  2802.             Queries and returns the value of the specified setting, using the
  2803.             cached setting names and values for this connection, when available.
  2804.             </summary>
  2805.             <param name="name">
  2806.             The name of the setting.
  2807.             </param>
  2808.             <param name="default">
  2809.             The value to be returned if the setting has not been set explicitly
  2810.             or cannot be determined.
  2811.             </param>
  2812.             <param name="value">
  2813.             The value of the cached setting is stored here if found; otherwise,
  2814.             the value of <paramref name="default" /> is stored here.
  2815.             </param>
  2816.             <returns>
  2817.             Non-zero if the cached setting was found; otherwise, zero.
  2818.             </returns>
  2819.         </member>
  2820.         <member name="M:System.Data.SQLite.SQLiteConnection.SetCachedSetting(System.String,System.Object)">
  2821.             <summary>
  2822.             Adds or sets the cached setting specified by <paramref name="name" />
  2823.             to the value specified by <paramref name="value" />.
  2824.             </summary>
  2825.             <param name="name">
  2826.             The name of the cached setting to add or replace.
  2827.             </param>
  2828.             <param name="value">
  2829.             The new value of the cached setting.
  2830.             </param>
  2831.         </member>
  2832.         <member name="M:System.Data.SQLite.SQLiteConnection.ClearTypeMappings">
  2833.             <summary>
  2834.             Clears the per-connection type mappings.
  2835.             </summary>
  2836.             <returns>
  2837.             The total number of per-connection type mappings cleared.
  2838.             </returns>
  2839.         </member>
  2840.         <member name="M:System.Data.SQLite.SQLiteConnection.GetTypeMappings">
  2841.             <summary>
  2842.             Returns the per-connection type mappings.
  2843.             </summary>
  2844.             <returns>
  2845.             The per-connection type mappings -OR- null if they are unavailable.
  2846.             </returns>
  2847.         </member>
  2848.         <member name="M:System.Data.SQLite.SQLiteConnection.AddTypeMapping(System.String,System.Data.DbType,System.Boolean)">
  2849.             <summary>
  2850.             Adds a per-connection type mapping, possibly replacing one or more
  2851.             that already exist.
  2852.             </summary>
  2853.             <param name="typeName">
  2854.             The case-insensitive database type name (e.g. "MYDATE").  The value
  2855.             of this parameter cannot be null.  Using an empty string value (or
  2856.             a string value consisting entirely of whitespace) for this parameter
  2857.             is not recommended.
  2858.             </param>
  2859.             <param name="dataType">
  2860.             The <see cref="T:System.Data.DbType"/> value that should be associated with the
  2861.             specified type name.
  2862.             </param>
  2863.             <param name="primary">
  2864.             Non-zero if this mapping should be considered to be the primary one
  2865.             for the specified <see cref="T:System.Data.DbType"/>.
  2866.             </param>
  2867.             <returns>
  2868.             A negative value if nothing was done.  Zero if no per-connection type
  2869.             mappings were replaced (i.e. it was a pure add operation).  More than
  2870.             zero if some per-connection type mappings were replaced.
  2871.             </returns>
  2872.         </member>
  2873.         <member name="M:System.Data.SQLite.SQLiteConnection.BindFunction(System.Data.SQLite.SQLiteFunctionAttribute,System.Data.SQLite.SQLiteFunction)">
  2874.             <summary>
  2875.             Attempts to bind the specified <see cref="T:System.Data.SQLite.SQLiteFunction"/> object
  2876.             instance to this connection.
  2877.             </summary>
  2878.             <param name="functionAttribute">
  2879.             The <see cref="T:System.Data.SQLite.SQLiteFunctionAttribute"/> object instance containing
  2880.             the metadata for the function to be bound.
  2881.             </param>
  2882.             <param name="function">
  2883.             The <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance that implements the
  2884.             function to be bound.
  2885.             </param>
  2886.         </member>
  2887.         <member name="M:System.Data.SQLite.SQLiteConnection.Clone">
  2888.             <summary>
  2889.             Creates a clone of the connection.  All attached databases and user-defined functions are cloned.  If the existing connection is open, the cloned connection
  2890.             will also be opened.
  2891.             </summary>
  2892.             <returns></returns>
  2893.         </member>
  2894.         <member name="M:System.Data.SQLite.SQLiteConnection.CreateFile(System.String)">
  2895.             <summary>
  2896.             Creates a database file.  This just creates a zero-byte file which SQLite
  2897.             will turn into a database when the file is opened properly.
  2898.             </summary>
  2899.             <param name="databaseFileName">The file to create</param>
  2900.         </member>
  2901.         <member name="M:System.Data.SQLite.SQLiteConnection.OnStateChange(System.Data.ConnectionState,System.Data.StateChangeEventArgs@)">
  2902.             <summary>
  2903.             Raises the state change event when the state of the connection changes
  2904.             </summary>
  2905.             <param name="newState">The new connection state.  If this is different
  2906.             from the previous state, the <see cref="E:System.Data.SQLite.SQLiteConnection.StateChange"/> event is
  2907.             raised.</param>
  2908.             <param name="eventArgs">The event data created for the raised event, if
  2909.             it was actually raised.</param>
  2910.         </member>
  2911.         <member name="M:System.Data.SQLite.SQLiteConnection.GetFallbackDefaultIsolationLevel">
  2912.             <summary>
  2913.             Determines and returns the fallback default isolation level when one cannot be
  2914.             obtained from an existing connection instance.
  2915.             </summary>
  2916.             <returns>
  2917.             The fallback default isolation level for this connection instance -OR-
  2918.             <see cref="F:System.Data.IsolationLevel.Unspecified"/> if it cannot be determined.
  2919.             </returns>
  2920.         </member>
  2921.         <member name="M:System.Data.SQLite.SQLiteConnection.GetDefaultIsolationLevel">
  2922.             <summary>
  2923.             Determines and returns the default isolation level for this connection instance.
  2924.             </summary>
  2925.             <returns>
  2926.             The default isolation level for this connection instance -OR-
  2927.             <see cref="F:System.Data.IsolationLevel.Unspecified"/> if it cannot be determined.
  2928.             </returns>
  2929.         </member>
  2930.         <member name="M:System.Data.SQLite.SQLiteConnection.BeginTransaction(System.Data.IsolationLevel,System.Boolean)">
  2931.             <summary>
  2932.             OBSOLETE.  Creates a new SQLiteTransaction if one isn't already active on the connection.
  2933.             </summary>
  2934.             <param name="isolationLevel">This parameter is ignored.</param>
  2935.             <param name="deferredLock">When TRUE, SQLite defers obtaining a write lock until a write operation is requested.
  2936.             When FALSE, a writelock is obtained immediately.  The default is TRUE, but in a multi-threaded multi-writer
  2937.             environment, one may instead choose to lock the database immediately to avoid any possible writer deadlock.</param>
  2938.             <returns>Returns a SQLiteTransaction object.</returns>
  2939.         </member>
  2940.         <member name="M:System.Data.SQLite.SQLiteConnection.BeginTransaction(System.Boolean)">
  2941.             <summary>
  2942.             OBSOLETE.  Creates a new SQLiteTransaction if one isn't already active on the connection.
  2943.             </summary>
  2944.             <param name="deferredLock">When TRUE, SQLite defers obtaining a write lock until a write operation is requested.
  2945.             When FALSE, a writelock is obtained immediately.  The default is false, but in a multi-threaded multi-writer
  2946.             environment, one may instead choose to lock the database immediately to avoid any possible writer deadlock.</param>
  2947.             <returns>Returns a SQLiteTransaction object.</returns>
  2948.         </member>
  2949.         <member name="M:System.Data.SQLite.SQLiteConnection.BeginTransaction(System.Data.IsolationLevel)">
  2950.             <summary>
  2951.             Creates a new <see cref="T:System.Data.SQLite.SQLiteTransaction"/> if one isn't already active on the connection.
  2952.             </summary>
  2953.             <param name="isolationLevel">Supported isolation levels are Serializable, ReadCommitted and Unspecified.</param>
  2954.             <remarks>
  2955.             Unspecified will use the default isolation level specified in the connection string.  If no isolation level is specified in the
  2956.             connection string, Serializable is used.
  2957.             Serializable transactions are the default.  In this mode, the engine gets an immediate lock on the database, and no other threads
  2958.             may begin a transaction.  Other threads may read from the database, but not write.
  2959.             With a ReadCommitted isolation level, locks are deferred and elevated as needed.  It is possible for multiple threads to start
  2960.             a transaction in ReadCommitted mode, but if a thread attempts to commit a transaction while another thread
  2961.             has a ReadCommitted lock, it may timeout or cause a deadlock on both threads until both threads' CommandTimeout's are reached.
  2962.             </remarks>
  2963.             <returns>Returns a SQLiteTransaction object.</returns>
  2964.         </member>
  2965.         <member name="M:System.Data.SQLite.SQLiteConnection.BeginTransaction">
  2966.             <summary>
  2967.             Creates a new <see cref="T:System.Data.SQLite.SQLiteTransaction"/> if one isn't already
  2968.             active on the connection.
  2969.             </summary>
  2970.             <returns>Returns the new transaction object.</returns>
  2971.         </member>
  2972.         <member name="M:System.Data.SQLite.SQLiteConnection.BeginDbTransaction(System.Data.IsolationLevel)">
  2973.             <summary>
  2974.             Forwards to the local <see cref="M:System.Data.SQLite.SQLiteConnection.BeginTransaction(System.Data.IsolationLevel)"/> function
  2975.             </summary>
  2976.             <param name="isolationLevel">Supported isolation levels are Unspecified, Serializable, and ReadCommitted</param>
  2977.             <returns></returns>
  2978.         </member>
  2979.         <member name="M:System.Data.SQLite.SQLiteConnection.ChangeDatabase(System.String)">
  2980.             <summary>
  2981.             This method is not implemented; however, the <see cref="E:System.Data.SQLite.SQLiteConnection.Changed"/>
  2982.             event will still be raised.
  2983.             </summary>
  2984.             <param name="databaseName"></param>
  2985.         </member>
  2986.         <member name="M:System.Data.SQLite.SQLiteConnection.Close">
  2987.             <summary>
  2988.             When the database connection is closed, all commands linked to this connection are automatically reset.
  2989.             </summary>
  2990.         </member>
  2991.         <member name="M:System.Data.SQLite.SQLiteConnection.ClearPool(System.Data.SQLite.SQLiteConnection)">
  2992.             <summary>
  2993.             Clears the connection pool associated with the connection.  Any other active connections using the same database file
  2994.             will be discarded instead of returned to the pool when they are closed.
  2995.             </summary>
  2996.             <param name="connection"></param>
  2997.         </member>
  2998.         <member name="M:System.Data.SQLite.SQLiteConnection.ClearAllPools">
  2999.             <summary>
  3000.             Clears all connection pools.  Any active connections will be discarded instead of sent to the pool when they are closed.
  3001.             </summary>
  3002.         </member>
  3003.         <member name="M:System.Data.SQLite.SQLiteConnection.CreateCommand">
  3004.             <summary>
  3005.             Create a new <see cref="T:System.Data.SQLite.SQLiteCommand"/> and associate it with this connection.
  3006.             </summary>
  3007.             <returns>Returns a new command object already assigned to this connection.</returns>
  3008.         </member>
  3009.         <member name="M:System.Data.SQLite.SQLiteConnection.CreateDbCommand">
  3010.             <summary>
  3011.             Forwards to the local <see cref="M:System.Data.SQLite.SQLiteConnection.CreateCommand"/> function.
  3012.             </summary>
  3013.             <returns></returns>
  3014.         </member>
  3015.         <member name="M:System.Data.SQLite.SQLiteConnection.ParseConnectionString(System.String)">
  3016.             <summary>
  3017.             Parses the connection string into component parts using the custom
  3018.             connection string parser.
  3019.             </summary>
  3020.             <param name="connectionString">The connection string to parse</param>
  3021.             <returns>An array of key-value pairs representing each parameter of the connection string</returns>
  3022.         </member>
  3023.         <member name="M:System.Data.SQLite.SQLiteConnection.ParseConnectionStringViaFramework(System.String,System.Boolean)">
  3024.             <summary>
  3025.             Parses a connection string using the built-in (i.e. framework provided)
  3026.             connection string parser class and returns the key/value pairs.  An
  3027.             exception may be thrown if the connection string is invalid or cannot be
  3028.             parsed.  When compiled for the .NET Compact Framework, the custom
  3029.             connection string parser is always used instead because the framework
  3030.             provided one is unavailable there.
  3031.             </summary>
  3032.             <param name="connectionString">
  3033.             The connection string to parse.
  3034.             </param>
  3035.             <param name="strict">
  3036.             Non-zero to throw an exception if any connection string values are not of
  3037.             the <see cref="T:System.String"/> type.
  3038.             </param>
  3039.             <returns>The list of key/value pairs.</returns>
  3040.         </member>
  3041.         <member name="M:System.Data.SQLite.SQLiteConnection.EnlistTransaction(System.Transactions.Transaction)">
  3042.             <summary>
  3043.             Manual distributed transaction enlistment support
  3044.             </summary>
  3045.             <param name="transaction">The distributed transaction to enlist in</param>
  3046.         </member>
  3047.         <member name="M:System.Data.SQLite.SQLiteConnection.FindKey(System.Collections.Generic.SortedList{System.String,System.String},System.String,System.String)">
  3048.             <summary>
  3049.             Looks for a key in the array of key/values of the parameter string.  If not found, return the specified default value
  3050.             </summary>
  3051.             <param name="items">The list to look in</param>
  3052.             <param name="key">The key to find</param>
  3053.             <param name="defValue">The default value to return if the key is not found</param>
  3054.             <returns>The value corresponding to the specified key, or the default value if not found.</returns>
  3055.         </member>
  3056.         <member name="M:System.Data.SQLite.SQLiteConnection.TryParseEnum(System.Type,System.String,System.Boolean)">
  3057.             <summary>
  3058.             Attempts to convert the string value to an enumerated value of the specified type.
  3059.             </summary>
  3060.             <param name="type">The enumerated type to convert the string value to.</param>
  3061.             <param name="value">The string value to be converted.</param>
  3062.             <param name="ignoreCase">Non-zero to make the conversion case-insensitive.</param>
  3063.             <returns>The enumerated value upon success or null upon error.</returns>
  3064.         </member>
  3065.         <member name="M:System.Data.SQLite.SQLiteConnection.TryParseByte(System.String,System.Globalization.NumberStyles,System.Byte@)">
  3066.             <summary>
  3067.             Attempts to convert an input string into a byte value.
  3068.             </summary>
  3069.             <param name="value">
  3070.             The string value to be converted.
  3071.             </param>
  3072.             <param name="style">
  3073.             The number styles to use for the conversion.
  3074.             </param>
  3075.             <param name="result">
  3076.             Upon sucess, this will contain the parsed byte value.
  3077.             Upon failure, the value of this parameter is undefined.
  3078.             </param>
  3079.             <returns>
  3080.             Non-zero upon success; zero on failure.
  3081.             </returns>
  3082.         </member>
  3083.         <member name="M:System.Data.SQLite.SQLiteConnection.EnableExtensions(System.Boolean)">
  3084.             <summary>
  3085.             Enables or disabled extension loading.
  3086.             </summary>
  3087.             <param name="enable">
  3088.             True to enable loading of extensions, false to disable.
  3089.             </param>
  3090.         </member>
  3091.         <member name="M:System.Data.SQLite.SQLiteConnection.LoadExtension(System.String)">
  3092.             <summary>
  3093.             Loads a SQLite extension library from the named dynamic link library file.
  3094.             </summary>
  3095.             <param name="fileName">
  3096.             The name of the dynamic link library file containing the extension.
  3097.             </param>
  3098.         </member>
  3099.         <member name="M:System.Data.SQLite.SQLiteConnection.LoadExtension(System.String,System.String)">
  3100.             <summary>
  3101.             Loads a SQLite extension library from the named dynamic link library file.
  3102.             </summary>
  3103.             <param name="fileName">
  3104.             The name of the dynamic link library file containing the extension.
  3105.             </param>
  3106.             <param name="procName">
  3107.             The name of the exported function used to initialize the extension.
  3108.             If null, the default "sqlite3_extension_init" will be used.
  3109.             </param>
  3110.         </member>
  3111.         <member name="M:System.Data.SQLite.SQLiteConnection.CreateModule(System.Data.SQLite.SQLiteModule)">
  3112.             <summary>
  3113.             Creates a disposable module containing the implementation of a virtual
  3114.             table.
  3115.             </summary>
  3116.             <param name="module">
  3117.             The module object to be used when creating the disposable module.
  3118.             </param>
  3119.         </member>
  3120.         <member name="M:System.Data.SQLite.SQLiteConnection.FromHexString(System.String)">
  3121.             <summary>
  3122.             Parses a string containing a sequence of zero or more hexadecimal
  3123.             encoded byte values and returns the resulting byte array.  The
  3124.             "0x" prefix is not allowed on the input string.
  3125.             </summary>
  3126.             <param name="text">
  3127.             The input string containing zero or more hexadecimal encoded byte
  3128.             values.
  3129.             </param>
  3130.             <returns>
  3131.             A byte array containing the parsed byte values or null if an error
  3132.             was encountered.
  3133.             </returns>
  3134.         </member>
  3135.         <member name="M:System.Data.SQLite.SQLiteConnection.ToHexString(System.Byte[])">
  3136.             <summary>
  3137.             Creates and returns a string containing the hexadecimal encoded byte
  3138.             values from the input array.
  3139.             </summary>
  3140.             <param name="array">
  3141.             The input array of bytes.
  3142.             </param>
  3143.             <returns>
  3144.             The resulting string or null upon failure.
  3145.             </returns>
  3146.         </member>
  3147.         <member name="M:System.Data.SQLite.SQLiteConnection.FromHexString(System.String,System.String@)">
  3148.             <summary>
  3149.             Parses a string containing a sequence of zero or more hexadecimal
  3150.             encoded byte values and returns the resulting byte array.  The
  3151.             "0x" prefix is not allowed on the input string.
  3152.             </summary>
  3153.             <param name="text">
  3154.             The input string containing zero or more hexadecimal encoded byte
  3155.             values.
  3156.             </param>
  3157.             <param name="error">
  3158.             Upon failure, this will contain an appropriate error message.
  3159.             </param>
  3160.             <returns>
  3161.             A byte array containing the parsed byte values or null if an error
  3162.             was encountered.
  3163.             </returns>
  3164.         </member>
  3165.         <member name="M:System.Data.SQLite.SQLiteConnection.GetDefaultPooling">
  3166.             <summary>
  3167.             This method figures out what the default connection pool setting should
  3168.             be based on the connection flags.  When present, the "Pooling" connection
  3169.             string property value always overrides the value returned by this method.
  3170.             </summary>
  3171.             <returns>
  3172.             Non-zero if the connection pool should be enabled by default; otherwise,
  3173.             zero.
  3174.             </returns>
  3175.         </member>
  3176.         <member name="M:System.Data.SQLite.SQLiteConnection.GetEffectiveIsolationLevel(System.Data.IsolationLevel)">
  3177.             <summary>
  3178.             Determines the transaction isolation level that should be used by
  3179.             the caller, primarily based upon the one specified by the caller.
  3180.             If mapping of transaction isolation levels is enabled, the returned
  3181.             transaction isolation level may be significantly different than the
  3182.             originally specified one.
  3183.             </summary>
  3184.             <param name="isolationLevel">
  3185.             The originally specified transaction isolation level.
  3186.             </param>
  3187.             <returns>
  3188.             The transaction isolation level that should be used.
  3189.             </returns>
  3190.         </member>
  3191.         <member name="M:System.Data.SQLite.SQLiteConnection.Open">
  3192.             <summary>
  3193.             Opens the connection using the parameters found in the <see cref="P:System.Data.SQLite.SQLiteConnection.ConnectionString"/>.
  3194.             </summary>
  3195.         </member>
  3196.         <member name="M:System.Data.SQLite.SQLiteConnection.OpenAndReturn">
  3197.             <summary>
  3198.             Opens the connection using the parameters found in the <see cref="P:System.Data.SQLite.SQLiteConnection.ConnectionString"/> and then returns it.
  3199.             </summary>
  3200.             <returns>The current connection object.</returns>
  3201.         </member>
  3202.         <member name="M:System.Data.SQLite.SQLiteConnection.Cancel">
  3203.             <summary>
  3204.             This method causes any pending database operation to abort and return at
  3205.             its earliest opportunity.  This routine is typically called in response
  3206.             to a user action such as pressing "Cancel" or Ctrl-C where the user wants
  3207.             a long query operation to halt immediately.  It is safe to call this
  3208.             routine from any thread.  However, it is not safe to call this routine
  3209.             with a database connection that is closed or might close before this method
  3210.             returns.
  3211.             </summary>
  3212.         </member>
  3213.         <member name="M:System.Data.SQLite.SQLiteConnection.GetMemoryStatistics(System.Collections.Generic.IDictionary{System.String,System.Int64}@)">
  3214.             <summary>
  3215.             Returns various global memory statistics for the SQLite core library via
  3216.             a dictionary of key/value pairs.  Currently, only the "MemoryUsed" and
  3217.             "MemoryHighwater" keys are returned and they have values that correspond
  3218.             to the values that could be obtained via the <see cref="P:System.Data.SQLite.SQLiteConnection.MemoryUsed"/>
  3219.             and <see cref="P:System.Data.SQLite.SQLiteConnection.MemoryHighwater"/> connection properties.
  3220.             </summary>
  3221.             <param name="statistics">
  3222.             This dictionary will be populated with the global memory statistics.  It
  3223.             will be created if necessary.
  3224.             </param>
  3225.         </member>
  3226.         <member name="M:System.Data.SQLite.SQLiteConnection.ReleaseMemory">
  3227.             <summary>
  3228.             Attempts to free as much heap memory as possible for this database connection.
  3229.             </summary>
  3230.         </member>
  3231.         <member name="M:System.Data.SQLite.SQLiteConnection.ReleaseMemory(System.Int32,System.Boolean,System.Boolean,System.Int32@,System.Boolean@,System.UInt32@)">
  3232.             <summary>
  3233.             Attempts to free N bytes of heap memory by deallocating non-essential memory
  3234.             allocations held by the database library. Memory used to cache database pages
  3235.             to improve performance is an example of non-essential memory.  This is a no-op
  3236.             returning zero if the SQLite core library was not compiled with the compile-time
  3237.             option SQLITE_ENABLE_MEMORY_MANAGEMENT.  Optionally, attempts to reset and/or
  3238.             compact the Win32 native heap, if applicable.
  3239.             </summary>
  3240.             <param name="nBytes">
  3241.             The requested number of bytes to free.
  3242.             </param>
  3243.             <param name="reset">
  3244.             Non-zero to attempt a heap reset.
  3245.             </param>
  3246.             <param name="compact">
  3247.             Non-zero to attempt heap compaction.
  3248.             </param>
  3249.             <param name="nFree">
  3250.             The number of bytes actually freed.  This value may be zero.
  3251.             </param>
  3252.             <param name="resetOk">
  3253.             This value will be non-zero if the heap reset was successful.
  3254.             </param>
  3255.             <param name="nLargest">
  3256.             The size of the largest committed free block in the heap, in bytes.
  3257.             This value will be zero unless heap compaction is enabled.
  3258.             </param>
  3259.             <returns>
  3260.             A standard SQLite return code (i.e. zero for success and non-zero
  3261.             for failure).
  3262.             </returns>
  3263.         </member>
  3264.         <member name="M:System.Data.SQLite.SQLiteConnection.SetMemoryStatus(System.Boolean)">
  3265.             <summary>
  3266.             Sets the status of the memory usage tracking subsystem in the SQLite core library.  By default, this is enabled.
  3267.             If this is disabled, memory usage tracking will not be performed.  This is not really a per-connection value, it is
  3268.             global to the process.
  3269.             </summary>
  3270.             <param name="value">Non-zero to enable memory usage tracking, zero otherwise.</param>
  3271.             <returns>A standard SQLite return code (i.e. zero for success and non-zero for failure).</returns>
  3272.         </member>
  3273.         <member name="M:System.Data.SQLite.SQLiteConnection.Shutdown">
  3274.             <summary>
  3275.             Passes a shutdown request to the SQLite core library.  Does not throw
  3276.             an exception if the shutdown request fails.
  3277.             </summary>
  3278.             <returns>
  3279.             A standard SQLite return code (i.e. zero for success and non-zero for
  3280.             failure).
  3281.             </returns>
  3282.         </member>
  3283.         <member name="M:System.Data.SQLite.SQLiteConnection.Shutdown(System.Boolean,System.Boolean)">
  3284.             <summary>
  3285.             Passes a shutdown request to the SQLite core library.  Throws an
  3286.             exception if the shutdown request fails and the no-throw parameter
  3287.             is non-zero.
  3288.             </summary>
  3289.             <param name="directories">
  3290.             Non-zero to reset the database and temporary directories to their
  3291.             default values, which should be null for both.
  3292.             </param>
  3293.             <param name="noThrow">
  3294.             When non-zero, throw an exception if the shutdown request fails.
  3295.             </param>
  3296.         </member>
  3297.         <member name="M:System.Data.SQLite.SQLiteConnection.SetExtendedResultCodes(System.Boolean)">
  3298.             Enables or disabled extended result codes returned by SQLite
  3299.         </member>
  3300.         <member name="M:System.Data.SQLite.SQLiteConnection.ResultCode">
  3301.             Enables or disabled extended result codes returned by SQLite
  3302.         </member>
  3303.         <member name="M:System.Data.SQLite.SQLiteConnection.ExtendedResultCode">
  3304.             Enables or disabled extended result codes returned by SQLite
  3305.         </member>
  3306.         <member name="M:System.Data.SQLite.SQLiteConnection.LogMessage(System.Data.SQLite.SQLiteErrorCode,System.String)">
  3307.             Add a log message via the SQLite sqlite3_log interface.
  3308.         </member>
  3309.         <member name="M:System.Data.SQLite.SQLiteConnection.LogMessage(System.Int32,System.String)">
  3310.             Add a log message via the SQLite sqlite3_log interface.
  3311.         </member>
  3312.         <member name="M:System.Data.SQLite.SQLiteConnection.ChangePassword(System.String)">
  3313.             <summary>
  3314.             Change the password (or assign a password) to an open database.
  3315.             </summary>
  3316.             <remarks>
  3317.             No readers or writers may be active for this process.  The database must already be open
  3318.             and if it already was password protected, the existing password must already have been supplied.
  3319.             </remarks>
  3320.             <param name="newPassword">The new password to assign to the database</param>
  3321.         </member>
  3322.         <member name="M:System.Data.SQLite.SQLiteConnection.ChangePassword(System.Byte[])">
  3323.             <summary>
  3324.             Change the password (or assign a password) to an open database.
  3325.             </summary>
  3326.             <remarks>
  3327.             No readers or writers may be active for this process.  The database must already be open
  3328.             and if it already was password protected, the existing password must already have been supplied.
  3329.             </remarks>
  3330.             <param name="newPassword">The new password to assign to the database</param>
  3331.         </member>
  3332.         <member name="M:System.Data.SQLite.SQLiteConnection.SetPassword(System.String)">
  3333.             <summary>
  3334.             Sets the password for a password-protected database.  A password-protected database is
  3335.             unusable for any operation until the password has been set.
  3336.             </summary>
  3337.             <param name="databasePassword">The password for the database</param>
  3338.         </member>
  3339.         <member name="M:System.Data.SQLite.SQLiteConnection.SetPassword(System.Byte[])">
  3340.             <summary>
  3341.             Sets the password for a password-protected database.  A password-protected database is
  3342.             unusable for any operation until the password has been set.
  3343.             </summary>
  3344.             <param name="databasePassword">The password for the database</param>
  3345.         </member>
  3346.         <member name="M:System.Data.SQLite.SQLiteConnection.SetAvRetry(System.Int32@,System.Int32@)">
  3347.             <summary>
  3348.             Queries or modifies the number of retries or the retry interval (in milliseconds) for
  3349.             certain I/O operations that may fail due to anti-virus software.
  3350.             </summary>
  3351.             <param name="count">The number of times to retry the I/O operation.  A negative value
  3352.             will cause the current count to be queried and replace that negative value.</param>
  3353.             <param name="interval">The number of milliseconds to wait before retrying the I/O
  3354.             operation.  This number is multiplied by the number of retry attempts so far to come
  3355.             up with the final number of milliseconds to wait.  A negative value will cause the
  3356.             current interval to be queried and replace that negative value.</param>
  3357.             <returns>Zero for success, non-zero for error.</returns>
  3358.         </member>
  3359.         <member name="M:System.Data.SQLite.SQLiteConnection.SetChunkSize(System.Int32)">
  3360.             <summary>
  3361.             Sets the chunk size for the primary file associated with this database
  3362.             connection.
  3363.             </summary>
  3364.             <param name="size">
  3365.             The new chunk size for the main database, in bytes.
  3366.             </param>
  3367.             <returns>
  3368.             Zero for success, non-zero for error.
  3369.             </returns>
  3370.         </member>
  3371.         <member name="M:System.Data.SQLite.SQLiteConnection.UnwrapString(System.String)">
  3372.             <summary>
  3373.             Removes one set of surrounding single -OR- double quotes from the string
  3374.             value and returns the resulting string value.  If the string is null, empty,
  3375.             or contains quotes that are not balanced, nothing is done and the original
  3376.             string value will be returned.
  3377.             </summary>
  3378.             <param name="value">The string value to process.</param>
  3379.             <returns>
  3380.             The string value, modified to remove one set of surrounding single -OR-
  3381.             double quotes, if applicable.
  3382.             </returns>
  3383.         </member>
  3384.         <member name="M:System.Data.SQLite.SQLiteConnection.ExpandFileName(System.String,System.Boolean)">
  3385.             <summary>
  3386.             Expand the filename of the data source, resolving the |DataDirectory|
  3387.             macro as appropriate.
  3388.             </summary>
  3389.             <param name="sourceFile">The database filename to expand</param>
  3390.             <param name="toFullPath">
  3391.             Non-zero if the returned file name should be converted to a full path
  3392.             (except when using the .NET Compact Framework).
  3393.             </param>
  3394.             <returns>The expanded path and filename of the filename</returns>
  3395.         </member>
  3396.         <member name="M:System.Data.SQLite.SQLiteConnection.GetSchema">
  3397.             <overloads>
  3398.              The following commands are used to extract schema information out of the database.  Valid schema types are:
  3399.              <list type="bullet">
  3400.              <item>
  3401.              <description>MetaDataCollections</description>
  3402.              </item>
  3403.              <item>
  3404.              <description>DataSourceInformation</description>
  3405.              </item>
  3406.              <item>
  3407.              <description>Catalogs</description>
  3408.              </item>
  3409.              <item>
  3410.              <description>Columns</description>
  3411.              </item>
  3412.              <item>
  3413.              <description>ForeignKeys</description>
  3414.              </item>
  3415.              <item>
  3416.              <description>Indexes</description>
  3417.              </item>
  3418.              <item>
  3419.              <description>IndexColumns</description>
  3420.              </item>
  3421.              <item>
  3422.              <description>Tables</description>
  3423.              </item>
  3424.              <item>
  3425.              <description>Views</description>
  3426.              </item>
  3427.              <item>
  3428.              <description>ViewColumns</description>
  3429.              </item>
  3430.              </list>
  3431.              </overloads>
  3432.              <summary>
  3433.              Returns the MetaDataCollections schema
  3434.              </summary>
  3435.              <returns>A DataTable of the MetaDataCollections schema</returns>
  3436.         </member>
  3437.         <member name="M:System.Data.SQLite.SQLiteConnection.GetSchema(System.String)">
  3438.             <summary>
  3439.             Returns schema information of the specified collection
  3440.             </summary>
  3441.             <param name="collectionName">The schema collection to retrieve</param>
  3442.             <returns>A DataTable of the specified collection</returns>
  3443.         </member>
  3444.         <member name="M:System.Data.SQLite.SQLiteConnection.GetSchema(System.String,System.String[])">
  3445.             <summary>
  3446.             Retrieves schema information using the specified constraint(s) for the specified collection
  3447.             </summary>
  3448.             <param name="collectionName">The collection to retrieve</param>
  3449.             <param name="restrictionValues">The restrictions to impose</param>
  3450.             <returns>A DataTable of the specified collection</returns>
  3451.         </member>
  3452.         <member name="M:System.Data.SQLite.SQLiteConnection.Schema_MetaDataCollections">
  3453.             <summary>
  3454.             Builds a MetaDataCollections schema datatable
  3455.             </summary>
  3456.             <returns>DataTable</returns>
  3457.         </member>
  3458.         <member name="M:System.Data.SQLite.SQLiteConnection.Schema_DataSourceInformation">
  3459.             <summary>
  3460.             Builds a DataSourceInformation datatable
  3461.             </summary>
  3462.             <returns>DataTable</returns>
  3463.         </member>
  3464.         <member name="M:System.Data.SQLite.SQLiteConnection.Schema_Columns(System.String,System.String,System.String)">
  3465.             <summary>
  3466.             Build a Columns schema
  3467.             </summary>
  3468.             <param name="strCatalog">The catalog (attached database) to query, can be null</param>
  3469.             <param name="strTable">The table to retrieve schema information for, must not be null</param>
  3470.             <param name="strColumn">The column to retrieve schema information for, can be null</param>
  3471.             <returns>DataTable</returns>
  3472.         </member>
  3473.         <member name="M:System.Data.SQLite.SQLiteConnection.Schema_Indexes(System.String,System.String,System.String)">
  3474.             <summary>
  3475.             Returns index information for the given database and catalog
  3476.             </summary>
  3477.             <param name="strCatalog">The catalog (attached database) to query, can be null</param>
  3478.             <param name="strIndex">The name of the index to retrieve information for, can be null</param>
  3479.             <param name="strTable">The table to retrieve index information for, can be null</param>
  3480.             <returns>DataTable</returns>
  3481.         </member>
  3482.         <member name="M:System.Data.SQLite.SQLiteConnection.Schema_Tables(System.String,System.String,System.String)">
  3483.             <summary>
  3484.             Retrieves table schema information for the database and catalog
  3485.             </summary>
  3486.             <param name="strCatalog">The catalog (attached database) to retrieve tables on</param>
  3487.             <param name="strTable">The table to retrieve, can be null</param>
  3488.             <param name="strType">The table type, can be null</param>
  3489.             <returns>DataTable</returns>
  3490.         </member>
  3491.         <member name="M:System.Data.SQLite.SQLiteConnection.Schema_Views(System.String,System.String)">
  3492.             <summary>
  3493.             Retrieves view schema information for the database
  3494.             </summary>
  3495.             <param name="strCatalog">The catalog (attached database) to retrieve views on</param>
  3496.             <param name="strView">The view name, can be null</param>
  3497.             <returns>DataTable</returns>
  3498.         </member>
  3499.         <member name="M:System.Data.SQLite.SQLiteConnection.Schema_Catalogs(System.String)">
  3500.             <summary>
  3501.             Retrieves catalog (attached databases) schema information for the database
  3502.             </summary>
  3503.             <param name="strCatalog">The catalog to retrieve, can be null</param>
  3504.             <returns>DataTable</returns>
  3505.         </member>
  3506.         <member name="M:System.Data.SQLite.SQLiteConnection.Schema_IndexColumns(System.String,System.String,System.String,System.String)">
  3507.             <summary>
  3508.             Returns the base column information for indexes in a database
  3509.             </summary>
  3510.             <param name="strCatalog">The catalog to retrieve indexes for (can be null)</param>
  3511.             <param name="strTable">The table to restrict index information by (can be null)</param>
  3512.             <param name="strIndex">The index to restrict index information by (can be null)</param>
  3513.             <param name="strColumn">The source column to restrict index information by (can be null)</param>
  3514.             <returns>A DataTable containing the results</returns>
  3515.         </member>
  3516.         <member name="M:System.Data.SQLite.SQLiteConnection.Schema_ViewColumns(System.String,System.String,System.String)">
  3517.             <summary>
  3518.             Returns detailed column information for a specified view
  3519.             </summary>
  3520.             <param name="strCatalog">The catalog to retrieve columns for (can be null)</param>
  3521.             <param name="strView">The view to restrict column information by (can be null)</param>
  3522.             <param name="strColumn">The source column to restrict column information by (can be null)</param>
  3523.             <returns>A DataTable containing the results</returns>
  3524.         </member>
  3525.         <member name="M:System.Data.SQLite.SQLiteConnection.Schema_ForeignKeys(System.String,System.String,System.String)">
  3526.             <summary>
  3527.             Retrieves foreign key information from the specified set of filters
  3528.             </summary>
  3529.             <param name="strCatalog">An optional catalog to restrict results on</param>
  3530.             <param name="strTable">An optional table to restrict results on</param>
  3531.             <param name="strKeyName">An optional foreign key name to restrict results on</param>
  3532.             <returns>A DataTable with the results of the query</returns>
  3533.         </member>
  3534.         <member name="E:System.Data.SQLite.SQLiteConnection._handlers">
  3535.             <summary>
  3536.             Static variable to store the connection event handlers to call.
  3537.             </summary>
  3538.         </member>
  3539.         <member name="E:System.Data.SQLite.SQLiteConnection.StateChange">
  3540.             <summary>
  3541.             This event is raised whenever the database is opened or closed.
  3542.             </summary>
  3543.         </member>
  3544.         <member name="E:System.Data.SQLite.SQLiteConnection.Changed">
  3545.             <summary>
  3546.             This event is raised when events related to the lifecycle of a
  3547.             SQLiteConnection object occur.
  3548.             </summary>
  3549.         </member>
  3550.         <member name="P:System.Data.SQLite.SQLiteConnection.ConnectionPool">
  3551.             <summary>
  3552.             This property is used to obtain or set the custom connection pool
  3553.             implementation to use, if any.  Setting this property to null will
  3554.             cause the default connection pool implementation to be used.
  3555.             </summary>
  3556.         </member>
  3557.         <member name="P:System.Data.SQLite.SQLiteConnection.PoolCount">
  3558.             <summary>
  3559.             Returns the number of pool entries for the file name associated with this connection.
  3560.             </summary>
  3561.         </member>
  3562.         <member name="P:System.Data.SQLite.SQLiteConnection.ConnectionString">
  3563.             <summary>
  3564.             The connection string containing the parameters for the connection
  3565.             </summary>
  3566.             <remarks>
  3567.             <list type="table">
  3568.             <listheader>
  3569.             <term>Parameter</term>
  3570.             <term>Values</term>
  3571.             <term>Required</term>
  3572.             <term>Default</term>
  3573.             </listheader>
  3574.             <item>
  3575.             <description>Data Source</description>
  3576.             <description>
  3577.             This may be a file name, the string ":memory:", or any supported URI (starting with SQLite 3.7.7).
  3578.             Starting with release 1.0.86.0, in order to use more than one consecutive backslash (e.g. for a
  3579.             UNC path), each of the adjoining backslash characters must be doubled (e.g. "\\Network\Share\test.db"
  3580.             would become "\\\\Network\Share\test.db").
  3581.             </description>
  3582.             <description>Y</description>
  3583.             <description></description>
  3584.             </item>
  3585.             <item>
  3586.             <description>Version</description>
  3587.             <description>3</description>
  3588.             <description>N</description>
  3589.             <description>3</description>
  3590.             </item>
  3591.             <item>
  3592.             <description>UseUTF16Encoding</description>
  3593.             <description><b>True</b><br/><b>False</b></description>
  3594.             <description>N</description>
  3595.             <description>False</description>
  3596.             </item>
  3597.             <item>
  3598.             <description>DateTimeFormat</description>
  3599.             <description>
  3600.             <b>Ticks</b> - Use the value of DateTime.Ticks.<br/>
  3601.             <b>ISO8601</b> - Use the ISO-8601 format.  Uses the "yyyy-MM-dd HH:mm:ss.FFFFFFFK" format for UTC
  3602.             DateTime values and "yyyy-MM-dd HH:mm:ss.FFFFFFF" format for local DateTime values).<br/>
  3603.             <b>JulianDay</b> - The interval of time in days and fractions of a day since January 1, 4713 BC.<br/>
  3604.             <b>UnixEpoch</b> - The whole number of seconds since the Unix epoch (January 1, 1970).<br/>
  3605.             <b>InvariantCulture</b> - Any culture-independent string value that the .NET Framework can interpret as a valid DateTime.<br/>
  3606.             <b>CurrentCulture</b> - Any string value that the .NET Framework can interpret as a valid DateTime using the current culture.</description>
  3607.             <description>N</description>
  3608.             <description>ISO8601</description>
  3609.             </item>
  3610.             <item>
  3611.             <description>DateTimeKind</description>
  3612.             <description><b>Unspecified</b> - Not specified as either UTC or local time.<br/><b>Utc</b> - The time represented is UTC.<br/><b>Local</b> - The time represented is local time.</description>
  3613.             <description>N</description>
  3614.             <description>Unspecified</description>
  3615.             </item>
  3616.             <item>
  3617.             <description>DateTimeFormatString</description>
  3618.             <description>The exact DateTime format string to use for all formatting and parsing of all DateTime
  3619.             values for this connection.</description>
  3620.             <description>N</description>
  3621.             <description>null</description>
  3622.             </item>
  3623.             <item>
  3624.             <description>BaseSchemaName</description>
  3625.             <description>Some base data classes in the framework (e.g. those that build SQL queries dynamically)
  3626.             assume that an ADO.NET provider cannot support an alternate catalog (i.e. database) without supporting
  3627.             alternate schemas as well; however, SQLite does not fit into this model.  Therefore, this value is used
  3628.             as a placeholder and removed prior to preparing any SQL statements that may contain it.</description>
  3629.             <description>N</description>
  3630.             <description>sqlite_default_schema</description>
  3631.             </item>
  3632.             <item>
  3633.             <description>BinaryGUID</description>
  3634.             <description><b>True</b> - Store GUID columns in binary form<br/><b>False</b> - Store GUID columns as text</description>
  3635.             <description>N</description>
  3636.             <description>True</description>
  3637.             </item>
  3638.             <item>
  3639.             <description>Cache Size</description>
  3640.             <description>{size in bytes}</description>
  3641.             <description>N</description>
  3642.             <description>2000</description>
  3643.             </item>
  3644.             <item>
  3645.             <description>Synchronous</description>
  3646.             <description><b>Normal</b> - Normal file flushing behavior<br/><b>Full</b> - Full flushing after all writes<br/><b>Off</b> - Underlying OS flushes I/O's</description>
  3647.             <description>N</description>
  3648.             <description>Full</description>
  3649.             </item>
  3650.             <item>
  3651.             <description>Page Size</description>
  3652.             <description>{size in bytes}</description>
  3653.             <description>N</description>
  3654.             <description>1024</description>
  3655.             </item>
  3656.             <item>
  3657.             <description>Password</description>
  3658.             <description>{password} - Using this parameter requires that the CryptoAPI based codec be enabled at compile-time for both the native interop assembly and the core managed assemblies; otherwise, using this parameter may result in an exception being thrown when attempting to open the connection.</description>
  3659.             <description>N</description>
  3660.             <description></description>
  3661.             </item>
  3662.             <item>
  3663.             <description>HexPassword</description>
  3664.             <description>{hexPassword} - Must contain a sequence of zero or more hexadecimal encoded byte values without a leading "0x" prefix.  Using this parameter requires that the CryptoAPI based codec be enabled at compile-time for both the native interop assembly and the core managed assemblies; otherwise, using this parameter may result in an exception being thrown when attempting to open the connection.</description>
  3665.             <description>N</description>
  3666.             <description></description>
  3667.             </item>
  3668.             <item>
  3669.             <description>Enlist</description>
  3670.             <description><b>Y</b> - Automatically enlist in distributed transactions<br/><b>N</b> - No automatic enlistment</description>
  3671.             <description>N</description>
  3672.             <description>Y</description>
  3673.             </item>
  3674.             <item>
  3675.             <description>Pooling</description>
  3676.             <description>
  3677.             <b>True</b> - Use connection pooling.<br/>
  3678.             <b>False</b> - Do not use connection pooling.<br/><br/>
  3679.             <b>WARNING:</b> When using the default connection pool implementation,
  3680.             setting this property to True should be avoided by applications that
  3681.             make use of COM (either directly or indirectly) due to possible
  3682.             deadlocks that can occur during the finalization of some COM objects.
  3683.             </description>
  3684.             <description>N</description>
  3685.             <description>False</description>
  3686.             </item>
  3687.             <item>
  3688.             <description>FailIfMissing</description>
  3689.             <description><b>True</b> - Don't create the database if it does not exist, throw an error instead<br/><b>False</b> - Automatically create the database if it does not exist</description>
  3690.             <description>N</description>
  3691.             <description>False</description>
  3692.             </item>
  3693.             <item>
  3694.             <description>Max Page Count</description>
  3695.             <description>{size in pages} - Limits the maximum number of pages (limits the size) of the database</description>
  3696.             <description>N</description>
  3697.             <description>0</description>
  3698.             </item>
  3699.             <item>
  3700.             <description>Legacy Format</description>
  3701.             <description><b>True</b> - Use the more compatible legacy 3.x database format<br/><b>False</b> - Use the newer 3.3x database format which compresses numbers more effectively</description>
  3702.             <description>N</description>
  3703.             <description>False</description>
  3704.             </item>
  3705.             <item>
  3706.             <description>Default Timeout</description>
  3707.             <description>{time in seconds}<br/>The default command timeout</description>
  3708.             <description>N</description>
  3709.             <description>30</description>
  3710.             </item>
  3711.             <item>
  3712.             <description>Journal Mode</description>
  3713.             <description><b>Delete</b> - Delete the journal file after a commit<br/><b>Persist</b> - Zero out and leave the journal file on disk after a commit<br/><b>Off</b> - Disable the rollback journal entirely</description>
  3714.             <description>N</description>
  3715.             <description>Delete</description>
  3716.             </item>
  3717.             <item>
  3718.             <description>Read Only</description>
  3719.             <description><b>True</b> - Open the database for read only access<br/><b>False</b> - Open the database for normal read/write access</description>
  3720.             <description>N</description>
  3721.             <description>False</description>
  3722.             </item>
  3723.             <item>
  3724.             <description>Max Pool Size</description>
  3725.             <description>The maximum number of connections for the given connection string that can be in the connection pool</description>
  3726.             <description>N</description>
  3727.             <description>100</description>
  3728.             </item>
  3729.             <item>
  3730.             <description>Default IsolationLevel</description>
  3731.             <description>The default transaciton isolation level</description>
  3732.             <description>N</description>
  3733.             <description>Serializable</description>
  3734.             </item>
  3735.             <item>
  3736.             <description>Foreign Keys</description>
  3737.             <description>Enable foreign key constraints</description>
  3738.             <description>N</description>
  3739.             <description>False</description>
  3740.             </item>
  3741.             <item>
  3742.             <description>Flags</description>
  3743.             <description>Extra behavioral flags for the connection.  See the <see cref="T:System.Data.SQLite.SQLiteConnectionFlags"/> enumeration for possible values.</description>
  3744.             <description>N</description>
  3745.             <description>Default</description>
  3746.             </item>
  3747.             <item>
  3748.             <description>SetDefaults</description>
  3749.             <description>
  3750.             <b>True</b> - Apply the default connection settings to the opened database.<br/>
  3751.             <b>False</b> - Skip applying the default connection settings to the opened database.
  3752.             </description>
  3753.             <description>N</description>
  3754.             <description>True</description>
  3755.             </item>
  3756.             <item>
  3757.             <description>ToFullPath</description>
  3758.             <description>
  3759.             <b>True</b> - Attempt to expand the data source file name to a fully qualified path before opening.<br/>
  3760.             <b>False</b> - Skip attempting to expand the data source file name to a fully qualified path before opening.
  3761.             </description>
  3762.             <description>N</description>
  3763.             <description>True</description>
  3764.             </item>
  3765.             </list>
  3766.             </remarks>
  3767.         </member>
  3768.         <member name="P:System.Data.SQLite.SQLiteConnection.DataSource">
  3769.             <summary>
  3770.             Returns the data source file name without extension or path.
  3771.             </summary>
  3772.         </member>
  3773.         <member name="P:System.Data.SQLite.SQLiteConnection.Database">
  3774.             <summary>
  3775.             Returns the string "main".
  3776.             </summary>
  3777.         </member>
  3778.         <member name="P:System.Data.SQLite.SQLiteConnection.DefaultTimeout">
  3779.             <summary>
  3780.             Gets/sets the default command timeout for newly-created commands.  This is especially useful for
  3781.             commands used internally such as inside a SQLiteTransaction, where setting the timeout is not possible.
  3782.             This can also be set in the ConnectionString with "Default Timeout"
  3783.             </summary>
  3784.         </member>
  3785.         <member name="P:System.Data.SQLite.SQLiteConnection.ParseViaFramework">
  3786.             <summary>
  3787.             Non-zero if the built-in (i.e. framework provided) connection string
  3788.             parser should be used when opening the connection.
  3789.             </summary>
  3790.         </member>
  3791.         <member name="P:System.Data.SQLite.SQLiteConnection.Flags">
  3792.             <summary>
  3793.             Gets/sets the extra behavioral flags for this connection.  See the
  3794.             <see cref="T:System.Data.SQLite.SQLiteConnectionFlags"/> enumeration for a list of
  3795.             possible values.
  3796.             </summary>
  3797.         </member>
  3798.         <member name="P:System.Data.SQLite.SQLiteConnection.DefaultDbType">
  3799.             <summary>
  3800.             Gets/sets the default database type for this connection.  This value
  3801.             will only be used when not null.
  3802.             </summary>
  3803.         </member>
  3804.         <member name="P:System.Data.SQLite.SQLiteConnection.DefaultTypeName">
  3805.             <summary>
  3806.             Gets/sets the default database type name for this connection.  This
  3807.             value will only be used when not null.
  3808.             </summary>
  3809.         </member>
  3810.         <member name="P:System.Data.SQLite.SQLiteConnection.OwnHandle">
  3811.             <summary>
  3812.             Returns non-zero if the underlying native connection handle is
  3813.             owned by this instance.
  3814.             </summary>
  3815.         </member>
  3816.         <member name="P:System.Data.SQLite.SQLiteConnection.ServerVersion">
  3817.             <summary>
  3818.             Returns the version of the underlying SQLite database engine
  3819.             </summary>
  3820.         </member>
  3821.         <member name="P:System.Data.SQLite.SQLiteConnection.LastInsertRowId">
  3822.             <summary>
  3823.             Returns the rowid of the most recent successful INSERT into the database from this connection.
  3824.             </summary>
  3825.         </member>
  3826.         <member name="P:System.Data.SQLite.SQLiteConnection.Changes">
  3827.             <summary>
  3828.             Returns the number of rows changed by the last INSERT, UPDATE, or DELETE statement executed on
  3829.             this connection.
  3830.             </summary>
  3831.         </member>
  3832.         <member name="P:System.Data.SQLite.SQLiteConnection.AutoCommit">
  3833.             <summary>
  3834.             Returns non-zero if the given database connection is in autocommit mode.
  3835.             Autocommit mode is on by default.  Autocommit mode is disabled by a BEGIN
  3836.             statement.  Autocommit mode is re-enabled by a COMMIT or ROLLBACK.
  3837.             </summary>
  3838.         </member>
  3839.         <member name="P:System.Data.SQLite.SQLiteConnection.MemoryUsed">
  3840.             <summary>
  3841.             Returns the amount of memory (in bytes) currently in use by the SQLite core library.
  3842.             </summary>
  3843.         </member>
  3844.         <member name="P:System.Data.SQLite.SQLiteConnection.MemoryHighwater">
  3845.             <summary>
  3846.             Returns the maximum amount of memory (in bytes) used by the SQLite core library since the high-water mark was last reset.
  3847.             </summary>
  3848.         </member>
  3849.         <member name="P:System.Data.SQLite.SQLiteConnection.DefineConstants">
  3850.             <summary>
  3851.             Returns a string containing the define constants (i.e. compile-time
  3852.             options) used to compile the core managed assembly, delimited with
  3853.             spaces.
  3854.             </summary>
  3855.         </member>
  3856.         <member name="P:System.Data.SQLite.SQLiteConnection.SQLiteVersion">
  3857.             <summary>
  3858.             Returns the version of the underlying SQLite core library.
  3859.             </summary>
  3860.         </member>
  3861.         <member name="P:System.Data.SQLite.SQLiteConnection.SQLiteSourceId">
  3862.             <summary>
  3863.             This method returns the string whose value is the same as the
  3864.             SQLITE_SOURCE_ID C preprocessor macro used when compiling the
  3865.             SQLite core library.
  3866.             </summary>
  3867.         </member>
  3868.         <member name="P:System.Data.SQLite.SQLiteConnection.SQLiteCompileOptions">
  3869.             <summary>
  3870.             Returns a string containing the compile-time options used to
  3871.             compile the SQLite core native library, delimited with spaces.
  3872.             </summary>
  3873.         </member>
  3874.         <member name="P:System.Data.SQLite.SQLiteConnection.InteropVersion">
  3875.             <summary>
  3876.             This method returns the version of the interop SQLite assembly
  3877.             used.  If the SQLite interop assembly is not in use or the
  3878.             necessary information cannot be obtained for any reason, a null
  3879.             value may be returned.
  3880.             </summary>
  3881.         </member>
  3882.         <member name="P:System.Data.SQLite.SQLiteConnection.InteropSourceId">
  3883.             <summary>
  3884.             This method returns the string whose value contains the unique
  3885.             identifier for the source checkout used to build the interop
  3886.             assembly.  If the SQLite interop assembly is not in use or the
  3887.             necessary information cannot be obtained for any reason, a null
  3888.             value may be returned.
  3889.             </summary>
  3890.         </member>
  3891.         <member name="P:System.Data.SQLite.SQLiteConnection.InteropCompileOptions">
  3892.             <summary>
  3893.             Returns a string containing the compile-time options used to
  3894.             compile the SQLite interop assembly, delimited with spaces.
  3895.             </summary>
  3896.         </member>
  3897.         <member name="P:System.Data.SQLite.SQLiteConnection.ProviderVersion">
  3898.             <summary>
  3899.             This method returns the version of the managed components used
  3900.             to interact with the SQLite core library.  If the necessary
  3901.             information cannot be obtained for any reason, a null value may
  3902.             be returned.
  3903.             </summary>
  3904.         </member>
  3905.         <member name="P:System.Data.SQLite.SQLiteConnection.ProviderSourceId">
  3906.             <summary>
  3907.             This method returns the string whose value contains the unique
  3908.             identifier for the source checkout used to build the managed
  3909.             components currently executing.  If the necessary information
  3910.             cannot be obtained for any reason, a null value may be returned.
  3911.             </summary>
  3912.         </member>
  3913.         <member name="P:System.Data.SQLite.SQLiteConnection.SharedFlags">
  3914.             <summary>
  3915.             The extra connection flags to be used for all opened connections.
  3916.             </summary>
  3917.         </member>
  3918.         <member name="P:System.Data.SQLite.SQLiteConnection.State">
  3919.             <summary>
  3920.             Returns the state of the connection.
  3921.             </summary>
  3922.         </member>
  3923.         <member name="E:System.Data.SQLite.SQLiteConnection.Authorize">
  3924.             <summary>
  3925.             This event is raised whenever SQLite encounters an action covered by the
  3926.             authorizer during query preparation.  Changing the value of the
  3927.             <see cref="F:System.Data.SQLite.AuthorizerEventArgs.ReturnCode"/> property will determine if
  3928.             the specific action will be allowed, ignored, or denied.  For the entire
  3929.             duration of the event, the associated connection and statement objects
  3930.             must not be modified, either directly or indirectly, by the called code.
  3931.             </summary>
  3932.         </member>
  3933.         <member name="E:System.Data.SQLite.SQLiteConnection.Update">
  3934.             <summary>
  3935.             This event is raised whenever SQLite makes an update/delete/insert into the database on
  3936.             this connection.  It only applies to the given connection.
  3937.             </summary>
  3938.         </member>
  3939.         <member name="E:System.Data.SQLite.SQLiteConnection.Commit">
  3940.             <summary>
  3941.             This event is raised whenever SQLite is committing a transaction.
  3942.             Return non-zero to trigger a rollback.
  3943.             </summary>
  3944.         </member>
  3945.         <member name="E:System.Data.SQLite.SQLiteConnection.Trace">
  3946.             <summary>
  3947.             This event is raised whenever SQLite statement first begins executing on
  3948.             this connection.  It only applies to the given connection.
  3949.             </summary>
  3950.         </member>
  3951.         <member name="E:System.Data.SQLite.SQLiteConnection.RollBack">
  3952.             <summary>
  3953.             This event is raised whenever SQLite is rolling back a transaction.
  3954.             </summary>
  3955.         </member>
  3956.         <member name="P:System.Data.SQLite.SQLiteConnection.DbProviderFactory">
  3957.             <summary>
  3958.             Returns the <see cref="T:System.Data.SQLite.SQLiteFactory"/> instance.
  3959.             </summary>
  3960.         </member>
  3961.         <member name="T:System.Data.SQLite.SynchronizationModes">
  3962.             <summary>
  3963.             The I/O file cache flushing behavior for the connection
  3964.             </summary>
  3965.         </member>
  3966.         <member name="F:System.Data.SQLite.SynchronizationModes.Normal">
  3967.             <summary>
  3968.             Normal file flushing at critical sections of the code
  3969.             </summary>
  3970.         </member>
  3971.         <member name="F:System.Data.SQLite.SynchronizationModes.Full">
  3972.             <summary>
  3973.             Full file flushing after every write operation
  3974.             </summary>
  3975.         </member>
  3976.         <member name="F:System.Data.SQLite.SynchronizationModes.Off">
  3977.             <summary>
  3978.             Use the default operating system's file flushing, SQLite does not explicitly flush the file buffers after writing
  3979.             </summary>
  3980.         </member>
  3981.         <member name="T:System.Data.SQLite.SQLiteAuthorizerEventHandler">
  3982.             <summary>
  3983.             Raised when authorization is required to perform an action contained
  3984.             within a SQL query.
  3985.             </summary>
  3986.             <param name="sender">The connection performing the action.</param>
  3987.             <param name="e">A <see cref="T:System.Data.SQLite.AuthorizerEventArgs"/> that contains the
  3988.             event data.</param>
  3989.         </member>
  3990.         <member name="T:System.Data.SQLite.SQLiteCommitHandler">
  3991.             <summary>
  3992.             Raised when a transaction is about to be committed.  To roll back a transaction, set the
  3993.             rollbackTrans boolean value to true.
  3994.             </summary>
  3995.             <param name="sender">The connection committing the transaction</param>
  3996.             <param name="e">Event arguments on the transaction</param>
  3997.         </member>
  3998.         <member name="T:System.Data.SQLite.SQLiteUpdateEventHandler">
  3999.             <summary>
  4000.             Raised when data is inserted, updated and deleted on a given connection
  4001.             </summary>
  4002.             <param name="sender">The connection committing the transaction</param>
  4003.             <param name="e">The event parameters which triggered the event</param>
  4004.         </member>
  4005.         <member name="T:System.Data.SQLite.SQLiteTraceEventHandler">
  4006.             <summary>
  4007.             Raised when a statement first begins executing on a given connection
  4008.             </summary>
  4009.             <param name="sender">The connection executing the statement</param>
  4010.             <param name="e">Event arguments of the trace</param>
  4011.         </member>
  4012.         <member name="T:System.Data.SQLite.SQLiteBackupCallback">
  4013.             <summary>
  4014.             Raised between each backup step.
  4015.             </summary>
  4016.             <param name="source">
  4017.             The source database connection.
  4018.             </param>
  4019.             <param name="sourceName">
  4020.             The source database name.
  4021.             </param>
  4022.             <param name="destination">
  4023.             The destination database connection.
  4024.             </param>
  4025.             <param name="destinationName">
  4026.             The destination database name.
  4027.             </param>
  4028.             <param name="pages">
  4029.             The number of pages copied with each step.
  4030.             </param>
  4031.             <param name="remainingPages">
  4032.             The number of pages remaining to be copied.
  4033.             </param>
  4034.             <param name="totalPages">
  4035.             The total number of pages in the source database.
  4036.             </param>
  4037.             <param name="retry">
  4038.             Set to true if the operation needs to be retried due to database
  4039.             locking issues; otherwise, set to false.
  4040.             </param>
  4041.             <returns>
  4042.             True to continue with the backup process or false to halt the backup
  4043.             process, rolling back any changes that have been made so far.
  4044.             </returns>
  4045.         </member>
  4046.         <member name="T:System.Data.SQLite.AuthorizerEventArgs">
  4047.             <summary>
  4048.             The data associated with a call into the authorizer.
  4049.             </summary>
  4050.         </member>
  4051.         <member name="F:System.Data.SQLite.AuthorizerEventArgs.UserData">
  4052.             <summary>
  4053.             The user-defined native data associated with this event.  Currently,
  4054.             this will always contain the value of <see cref="F:System.IntPtr.Zero"/>.
  4055.             </summary>
  4056.         </member>
  4057.         <member name="F:System.Data.SQLite.AuthorizerEventArgs.ActionCode">
  4058.             <summary>
  4059.             The action code responsible for the current call into the authorizer.
  4060.             </summary>
  4061.         </member>
  4062.         <member name="F:System.Data.SQLite.AuthorizerEventArgs.Argument1">
  4063.             <summary>
  4064.             The first string argument for the current call into the authorizer.
  4065.             The exact value will vary based on the action code, see the
  4066.             <see cref="T:System.Data.SQLite.SQLiteAuthorizerActionCode"/> enumeration for possible
  4067.             values.
  4068.             </summary>
  4069.         </member>
  4070.         <member name="F:System.Data.SQLite.AuthorizerEventArgs.Argument2">
  4071.             <summary>
  4072.             The second string argument for the current call into the authorizer.
  4073.             The exact value will vary based on the action code, see the
  4074.             <see cref="T:System.Data.SQLite.SQLiteAuthorizerActionCode"/> enumeration for possible
  4075.             values.
  4076.             </summary>
  4077.         </member>
  4078.         <member name="F:System.Data.SQLite.AuthorizerEventArgs.Database">
  4079.             <summary>
  4080.             The database name for the current call into the authorizer, if
  4081.             applicable.
  4082.             </summary>
  4083.         </member>
  4084.         <member name="F:System.Data.SQLite.AuthorizerEventArgs.Context">
  4085.             <summary>
  4086.             The name of the inner-most trigger or view that is responsible for
  4087.             the access attempt or a null value if this access attempt is directly
  4088.             from top-level SQL code.
  4089.             </summary>
  4090.         </member>
  4091.         <member name="F:System.Data.SQLite.AuthorizerEventArgs.ReturnCode">
  4092.             <summary>
  4093.             The return code for the current call into the authorizer.
  4094.             </summary>
  4095.         </member>
  4096.         <member name="M:System.Data.SQLite.AuthorizerEventArgs.#ctor">
  4097.             <summary>
  4098.             Constructs an instance of this class with default property values.
  4099.             </summary>
  4100.         </member>
  4101.         <member name="M:System.Data.SQLite.AuthorizerEventArgs.#ctor(System.IntPtr,System.Data.SQLite.SQLiteAuthorizerActionCode,System.String,System.String,System.String,System.String,System.Data.SQLite.SQLiteAuthorizerReturnCode)">
  4102.             <summary>
  4103.             Constructs an instance of this class with specific property values.
  4104.             </summary>
  4105.             <param name="pUserData">
  4106.             The user-defined native data associated with this event.
  4107.             </param>
  4108.             <param name="actionCode">
  4109.             The authorizer action code.
  4110.             </param>
  4111.             <param name="argument1">
  4112.             The first authorizer argument.
  4113.             </param>
  4114.             <param name="argument2">
  4115.             The second authorizer argument.
  4116.             </param>
  4117.             <param name="database">
  4118.             The database name, if applicable.
  4119.             </param>
  4120.             <param name="context">
  4121.             The name of the inner-most trigger or view that is responsible for
  4122.             the access attempt or a null value if this access attempt is directly
  4123.             from top-level SQL code.
  4124.             </param>
  4125.             <param name="returnCode">
  4126.             The authorizer return code.
  4127.             </param>
  4128.         </member>
  4129.         <member name="T:System.Data.SQLite.UpdateEventType">
  4130.             <summary>
  4131.             Whenever an update event is triggered on a connection, this enum will indicate
  4132.             exactly what type of operation is being performed.
  4133.             </summary>
  4134.         </member>
  4135.         <member name="F:System.Data.SQLite.UpdateEventType.Delete">
  4136.             <summary>
  4137.             A row is being deleted from the given database and table
  4138.             </summary>
  4139.         </member>
  4140.         <member name="F:System.Data.SQLite.UpdateEventType.Insert">
  4141.             <summary>
  4142.             A row is being inserted into the table.
  4143.             </summary>
  4144.         </member>
  4145.         <member name="F:System.Data.SQLite.UpdateEventType.Update">
  4146.             <summary>
  4147.             A row is being updated in the table.
  4148.             </summary>
  4149.         </member>
  4150.         <member name="T:System.Data.SQLite.UpdateEventArgs">
  4151.             <summary>
  4152.             Passed during an Update callback, these event arguments detail the type of update operation being performed
  4153.             on the given connection.
  4154.             </summary>
  4155.         </member>
  4156.         <member name="F:System.Data.SQLite.UpdateEventArgs.Database">
  4157.             <summary>
  4158.             The name of the database being updated (usually "main" but can be any attached or temporary database)
  4159.             </summary>
  4160.         </member>
  4161.         <member name="F:System.Data.SQLite.UpdateEventArgs.Table">
  4162.             <summary>
  4163.             The name of the table being updated
  4164.             </summary>
  4165.         </member>
  4166.         <member name="F:System.Data.SQLite.UpdateEventArgs.Event">
  4167.             <summary>
  4168.             The type of update being performed (insert/update/delete)
  4169.             </summary>
  4170.         </member>
  4171.         <member name="F:System.Data.SQLite.UpdateEventArgs.RowId">
  4172.             <summary>
  4173.             The RowId affected by this update.
  4174.             </summary>
  4175.         </member>
  4176.         <member name="T:System.Data.SQLite.CommitEventArgs">
  4177.             <summary>
  4178.             Event arguments raised when a transaction is being committed
  4179.             </summary>
  4180.         </member>
  4181.         <member name="F:System.Data.SQLite.CommitEventArgs.AbortTransaction">
  4182.             <summary>
  4183.             Set to true to abort the transaction and trigger a rollback
  4184.             </summary>
  4185.         </member>
  4186.         <member name="T:System.Data.SQLite.TraceEventArgs">
  4187.             <summary>
  4188.             Passed during an Trace callback, these event arguments contain the UTF-8 rendering of the SQL statement text
  4189.             </summary>
  4190.         </member>
  4191.         <member name="F:System.Data.SQLite.TraceEventArgs.Statement">
  4192.             <summary>
  4193.             SQL statement text as the statement first begins executing
  4194.             </summary>
  4195.         </member>
  4196.         <member name="T:System.Data.SQLite.ISQLiteConnectionPool">
  4197.             <summary>
  4198.             This interface represents a custom connection pool implementation
  4199.             usable by System.Data.SQLite.
  4200.             </summary>
  4201.         </member>
  4202.         <member name="M:System.Data.SQLite.ISQLiteConnectionPool.GetCounts(System.String,System.Collections.Generic.Dictionary{System.String,System.Int32}@,System.Int32@,System.Int32@,System.Int32@)">
  4203.             <summary>
  4204.             Counts the number of pool entries matching the specified file name.
  4205.             </summary>
  4206.             <param name="fileName">
  4207.             The file name to match or null to match all files.
  4208.             </param>
  4209.             <param name="counts">
  4210.             The pool entry counts for each matching file.
  4211.             </param>
  4212.             <param name="openCount">
  4213.             The total number of connections successfully opened from any pool.
  4214.             </param>
  4215.             <param name="closeCount">
  4216.             The total number of connections successfully closed from any pool.
  4217.             </param>
  4218.             <param name="totalCount">
  4219.             The total number of pool entries for all matching files.
  4220.             </param>
  4221.         </member>
  4222.         <member name="M:System.Data.SQLite.ISQLiteConnectionPool.ClearPool(System.String)">
  4223.             <summary>
  4224.             Disposes of all pooled connections associated with the specified
  4225.             database file name.
  4226.             </summary>
  4227.             <param name="fileName">
  4228.             The database file name.
  4229.             </param>
  4230.         </member>
  4231.         <member name="M:System.Data.SQLite.ISQLiteConnectionPool.ClearAllPools">
  4232.             <summary>
  4233.             Disposes of all pooled connections.
  4234.             </summary>
  4235.         </member>
  4236.         <member name="M:System.Data.SQLite.ISQLiteConnectionPool.Add(System.String,System.Object,System.Int32)">
  4237.             <summary>
  4238.             Adds a connection to the pool of those associated with the
  4239.             specified database file name.
  4240.             </summary>
  4241.             <param name="fileName">
  4242.             The database file name.
  4243.             </param>
  4244.             <param name="handle">
  4245.             The database connection handle.
  4246.             </param>
  4247.             <param name="version">
  4248.             The connection pool version at the point the database connection
  4249.             handle was received from the connection pool.  This is also the
  4250.             connection pool version that the database connection handle was
  4251.             created under.
  4252.             </param>
  4253.         </member>
  4254.         <member name="M:System.Data.SQLite.ISQLiteConnectionPool.Remove(System.String,System.Int32,System.Int32@)">
  4255.             <summary>
  4256.             Removes a connection from the pool of those associated with the
  4257.             specified database file name with the intent of using it to
  4258.             interact with the database.
  4259.             </summary>
  4260.             <param name="fileName">
  4261.             The database file name.
  4262.             </param>
  4263.             <param name="maxPoolSize">
  4264.             The new maximum size of the connection pool for the specified
  4265.             database file name.
  4266.             </param>
  4267.             <param name="version">
  4268.             The connection pool version associated with the returned database
  4269.             connection handle, if any.
  4270.             </param>
  4271.             <returns>
  4272.             The database connection handle associated with the specified
  4273.             database file name or null if it cannot be obtained.
  4274.             </returns>
  4275.         </member>
  4276.         <member name="T:System.Data.SQLite.SQLiteConnectionPool">
  4277.             <summary>
  4278.             This default method implementations in this class should not be used by
  4279.             applications that make use of COM (either directly or indirectly) due
  4280.             to possible deadlocks that can occur during finalization of some COM
  4281.             objects.
  4282.             </summary>
  4283.         </member>
  4284.         <member name="F:System.Data.SQLite.SQLiteConnectionPool._syncRoot">
  4285.             <summary>
  4286.             This field is used to synchronize access to the private static data
  4287.             in this class.
  4288.             </summary>
  4289.         </member>
  4290.         <member name="F:System.Data.SQLite.SQLiteConnectionPool._connectionPool">
  4291.             <summary>
  4292.             When this field is non-null, it will be used to provide the
  4293.             implementation of all the connection pool methods; otherwise,
  4294.             the default method implementations will be used.
  4295.             </summary>
  4296.         </member>
  4297.         <member name="F:System.Data.SQLite.SQLiteConnectionPool._queueList">
  4298.             <summary>
  4299.             The dictionary of connection pools, based on the normalized file
  4300.             name of the SQLite database.
  4301.             </summary>
  4302.         </member>
  4303.         <member name="F:System.Data.SQLite.SQLiteConnectionPool._poolVersion">
  4304.             <summary>
  4305.             The default version number new pools will get.
  4306.             </summary>
  4307.         </member>
  4308.         <member name="F:System.Data.SQLite.SQLiteConnectionPool._poolOpened">
  4309.             <summary>
  4310.             The number of connections successfully opened from any pool.
  4311.             This value is incremented by the Remove method.
  4312.             </summary>
  4313.         </member>
  4314.         <member name="F:System.Data.SQLite.SQLiteConnectionPool._poolClosed">
  4315.             <summary>
  4316.             The number of connections successfully closed from any pool.
  4317.             This value is incremented by the Add method.
  4318.             </summary>
  4319.         </member>
  4320.         <member name="M:System.Data.SQLite.SQLiteConnectionPool.GetCounts(System.String,System.Collections.Generic.Dictionary{System.String,System.Int32}@,System.Int32@,System.Int32@,System.Int32@)">
  4321.             <summary>
  4322.             Counts the number of pool entries matching the specified file name.
  4323.             </summary>
  4324.             <param name="fileName">
  4325.             The file name to match or null to match all files.
  4326.             </param>
  4327.             <param name="counts">
  4328.             The pool entry counts for each matching file.
  4329.             </param>
  4330.             <param name="openCount">
  4331.             The total number of connections successfully opened from any pool.
  4332.             </param>
  4333.             <param name="closeCount">
  4334.             The total number of connections successfully closed from any pool.
  4335.             </param>
  4336.             <param name="totalCount">
  4337.             The total number of pool entries for all matching files.
  4338.             </param>
  4339.         </member>
  4340.         <member name="M:System.Data.SQLite.SQLiteConnectionPool.ClearPool(System.String)">
  4341.             <summary>
  4342.             Disposes of all pooled connections associated with the specified
  4343.             database file name.
  4344.             </summary>
  4345.             <param name="fileName">
  4346.             The database file name.
  4347.             </param>
  4348.         </member>
  4349.         <member name="M:System.Data.SQLite.SQLiteConnectionPool.ClearAllPools">
  4350.             <summary>
  4351.             Disposes of all pooled connections.
  4352.             </summary>
  4353.         </member>
  4354.         <member name="M:System.Data.SQLite.SQLiteConnectionPool.Add(System.String,System.Data.SQLite.SQLiteConnectionHandle,System.Int32)">
  4355.             <summary>
  4356.             Adds a connection to the pool of those associated with the
  4357.             specified database file name.
  4358.             </summary>
  4359.             <param name="fileName">
  4360.             The database file name.
  4361.             </param>
  4362.             <param name="handle">
  4363.             The database connection handle.
  4364.             </param>
  4365.             <param name="version">
  4366.             The connection pool version at the point the database connection
  4367.             handle was received from the connection pool.  This is also the
  4368.             connection pool version that the database connection handle was
  4369.             created under.
  4370.             </param>
  4371.         </member>
  4372.         <member name="M:System.Data.SQLite.SQLiteConnectionPool.Remove(System.String,System.Int32,System.Int32@)">
  4373.             <summary>
  4374.             Removes a connection from the pool of those associated with the
  4375.             specified database file name with the intent of using it to
  4376.             interact with the database.
  4377.             </summary>
  4378.             <param name="fileName">
  4379.             The database file name.
  4380.             </param>
  4381.             <param name="maxPoolSize">
  4382.             The new maximum size of the connection pool for the specified
  4383.             database file name.
  4384.             </param>
  4385.             <param name="version">
  4386.             The connection pool version associated with the returned database
  4387.             connection handle, if any.
  4388.             </param>
  4389.             <returns>
  4390.             The database connection handle associated with the specified
  4391.             database file name or null if it cannot be obtained.
  4392.             </returns>
  4393.         </member>
  4394.         <member name="M:System.Data.SQLite.SQLiteConnectionPool.GetConnectionPool">
  4395.             <summary>
  4396.             This method is used to obtain a reference to the custom connection
  4397.             pool implementation currently in use, if any.
  4398.             </summary>
  4399.             <returns>
  4400.             The custom connection pool implementation or null if the default
  4401.             connection pool implementation should be used.
  4402.             </returns>
  4403.         </member>
  4404.         <member name="M:System.Data.SQLite.SQLiteConnectionPool.SetConnectionPool(System.Data.SQLite.ISQLiteConnectionPool)">
  4405.             <summary>
  4406.             This method is used to set the reference to the custom connection
  4407.             pool implementation to use, if any.
  4408.             </summary>
  4409.             <param name="connectionPool">
  4410.             The custom connection pool implementation to use or null if the
  4411.             default connection pool implementation should be used.
  4412.             </param>
  4413.         </member>
  4414.         <member name="M:System.Data.SQLite.SQLiteConnectionPool.ResizePool(System.Data.SQLite.SQLiteConnectionPool.PoolQueue,System.Boolean)">
  4415.             <summary>
  4416.             We do not have to thread-lock anything in this function, because it
  4417.             is only called by other functions above which already take the lock.
  4418.             </summary>
  4419.             <param name="queue">
  4420.             The pool queue to resize.
  4421.             </param>
  4422.             <param name="add">
  4423.             If a function intends to add to the pool, this is true, which
  4424.             forces the resize to take one more than it needs from the pool.
  4425.             </param>
  4426.         </member>
  4427.         <member name="T:System.Data.SQLite.SQLiteConnectionPool.PoolQueue">
  4428.             <summary>
  4429.             Keeps track of connections made on a specified file.  The PoolVersion
  4430.             dictates whether old objects get returned to the pool or discarded
  4431.             when no longer in use.
  4432.             </summary>
  4433.         </member>
  4434.         <member name="F:System.Data.SQLite.SQLiteConnectionPool.PoolQueue.Queue">
  4435.             <summary>
  4436.             The queue of weak references to the actual database connection
  4437.             handles.
  4438.             </summary>
  4439.         </member>
  4440.         <member name="F:System.Data.SQLite.SQLiteConnectionPool.PoolQueue.PoolVersion">
  4441.             <summary>
  4442.             This pool version associated with the database connection
  4443.             handles in this pool queue.
  4444.             </summary>
  4445.         </member>
  4446.         <member name="F:System.Data.SQLite.SQLiteConnectionPool.PoolQueue.MaxPoolSize">
  4447.             <summary>
  4448.             The maximum size of this pool queue.
  4449.             </summary>
  4450.         </member>
  4451.         <member name="M:System.Data.SQLite.SQLiteConnectionPool.PoolQueue.#ctor(System.Int32,System.Int32)">
  4452.             <summary>
  4453.             Constructs a connection pool queue using the specified version
  4454.             and maximum size.  Normally, all the database connection
  4455.             handles in this pool are associated with a single database file
  4456.             name.
  4457.             </summary>
  4458.             <param name="version">
  4459.             The initial pool version for this connection pool queue.
  4460.             </param>
  4461.             <param name="maxSize">
  4462.             The initial maximum size for this connection pool queue.
  4463.             </param>
  4464.         </member>
  4465.         <member name="T:System.Data.SQLite.SQLiteConnectionStringBuilder">
  4466.             <summary>
  4467.             SQLite implementation of DbConnectionStringBuilder.
  4468.             </summary>
  4469.         </member>
  4470.         <member name="F:System.Data.SQLite.SQLiteConnectionStringBuilder._properties">
  4471.             <summary>
  4472.             Properties of this class
  4473.             </summary>
  4474.         </member>
  4475.         <member name="M:System.Data.SQLite.SQLiteConnectionStringBuilder.#ctor">
  4476.             <overloads>
  4477.             Constructs a new instance of the class
  4478.             </overloads>
  4479.             <summary>
  4480.             Default constructor
  4481.             </summary>
  4482.         </member>
  4483.         <member name="M:System.Data.SQLite.SQLiteConnectionStringBuilder.#ctor(System.String)">
  4484.             <summary>
  4485.             Constructs a new instance of the class using the specified connection string.
  4486.             </summary>
  4487.             <param name="connectionString">The connection string to parse</param>
  4488.         </member>
  4489.         <member name="M:System.Data.SQLite.SQLiteConnectionStringBuilder.Initialize(System.String)">
  4490.             <summary>
  4491.             Private initializer, which assigns the connection string and resets the builder
  4492.             </summary>
  4493.             <param name="cnnString">The connection string to assign</param>
  4494.         </member>
  4495.         <member name="M:System.Data.SQLite.SQLiteConnectionStringBuilder.TryGetValue(System.String,System.Object@)">
  4496.             <summary>
  4497.             Helper function for retrieving values from the connectionstring
  4498.             </summary>
  4499.             <param name="keyword">The keyword to retrieve settings for</param>
  4500.             <param name="value">The resulting parameter value</param>
  4501.             <returns>Returns true if the value was found and returned</returns>
  4502.         </member>
  4503.         <member name="M:System.Data.SQLite.SQLiteConnectionStringBuilder.FallbackGetProperties(System.Collections.Hashtable)">
  4504.             <summary>
  4505.             Fallback method for MONO, which doesn't implement DbConnectionStringBuilder.GetProperties()
  4506.             </summary>
  4507.             <param name="propertyList">The hashtable to fill with property descriptors</param>
  4508.         </member>
  4509.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.Version">
  4510.             <summary>
  4511.             Gets/Sets the default version of the SQLite engine to instantiate.  Currently the only valid value is 3, indicating version 3 of the sqlite library.
  4512.             </summary>
  4513.         </member>
  4514.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.SyncMode">
  4515.             <summary>
  4516.             Gets/Sets the synchronization mode (file flushing) of the connection string.  Default is "Normal".
  4517.             </summary>
  4518.         </member>
  4519.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.UseUTF16Encoding">
  4520.             <summary>
  4521.             Gets/Sets the encoding for the connection string.  The default is "False" which indicates UTF-8 encoding.
  4522.             </summary>
  4523.         </member>
  4524.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.Pooling">
  4525.             <summary>
  4526.             Gets/Sets whether or not to use connection pooling.  The default is "False"
  4527.             </summary>
  4528.         </member>
  4529.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.BinaryGUID">
  4530.             <summary>
  4531.             Gets/Sets whethor not to store GUID's in binary format.  The default is True
  4532.             which saves space in the database.
  4533.             </summary>
  4534.         </member>
  4535.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DataSource">
  4536.             <summary>
  4537.             Gets/Sets the filename to open on the connection string.
  4538.             </summary>
  4539.         </member>
  4540.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.Uri">
  4541.             <summary>
  4542.             An alternate to the data source property
  4543.             </summary>
  4544.         </member>
  4545.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.FullUri">
  4546.             <summary>
  4547.             An alternate to the data source property that uses the SQLite URI syntax.
  4548.             </summary>
  4549.         </member>
  4550.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DefaultTimeout">
  4551.             <summary>
  4552.             Gets/sets the default command timeout for newly-created commands.  This is especially useful for 
  4553.             commands used internally such as inside a SQLiteTransaction, where setting the timeout is not possible.
  4554.             </summary>
  4555.         </member>
  4556.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.Enlist">
  4557.             <summary>
  4558.             Determines whether or not the connection will automatically participate
  4559.             in the current distributed transaction (if one exists)
  4560.             </summary>
  4561.         </member>
  4562.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.FailIfMissing">
  4563.             <summary>
  4564.             If set to true, will throw an exception if the database specified in the connection
  4565.             string does not exist.  If false, the database will be created automatically.
  4566.             </summary>
  4567.         </member>
  4568.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.LegacyFormat">
  4569.             <summary>
  4570.             If enabled, uses the legacy 3.xx format for maximum compatibility, but results in larger
  4571.             database sizes.
  4572.             </summary>
  4573.         </member>
  4574.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.ReadOnly">
  4575.             <summary>
  4576.             When enabled, the database will be opened for read-only access and writing will be disabled.
  4577.             </summary>
  4578.         </member>
  4579.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.Password">
  4580.             <summary>
  4581.             Gets/sets the database encryption password
  4582.             </summary>
  4583.         </member>
  4584.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.HexPassword">
  4585.             <summary>
  4586.             Gets/sets the database encryption hexadecimal password
  4587.             </summary>
  4588.         </member>
  4589.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.PageSize">
  4590.             <summary>
  4591.             Gets/Sets the page size for the connection.
  4592.             </summary>
  4593.         </member>
  4594.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.MaxPageCount">
  4595.             <summary>
  4596.             Gets/Sets the maximum number of pages the database may hold
  4597.             </summary>
  4598.         </member>
  4599.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.CacheSize">
  4600.             <summary>
  4601.             Gets/Sets the cache size for the connection.
  4602.             </summary>
  4603.         </member>
  4604.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DateTimeFormat">
  4605.             <summary>
  4606.             Gets/Sets the DateTime format for the connection.
  4607.             </summary>
  4608.         </member>
  4609.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DateTimeKind">
  4610.             <summary>
  4611.             Gets/Sets the DateTime kind for the connection.
  4612.             </summary>
  4613.         </member>
  4614.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DateTimeFormatString">
  4615.             <summary>
  4616.             Gets/sets the DateTime format string used for formatting
  4617.             and parsing purposes.
  4618.             </summary>
  4619.         </member>
  4620.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.BaseSchemaName">
  4621.             <summary>
  4622.             Gets/Sets the placeholder base schema name used for
  4623.             .NET Framework compatibility purposes.
  4624.             </summary>
  4625.         </member>
  4626.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.JournalMode">
  4627.             <summary>
  4628.             Determines how SQLite handles the transaction journal file.
  4629.             </summary>
  4630.         </member>
  4631.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DefaultIsolationLevel">
  4632.             <summary>
  4633.             Sets the default isolation level for transactions on the connection.
  4634.             </summary>
  4635.         </member>
  4636.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DefaultDbType">
  4637.             <summary>
  4638.             Gets/sets the default database type for the connection.
  4639.             </summary>
  4640.         </member>
  4641.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.DefaultTypeName">
  4642.             <summary>
  4643.             Gets/sets the default type name for the connection.
  4644.             </summary>
  4645.         </member>
  4646.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.ForeignKeys">
  4647.             <summary>
  4648.             If enabled, use foreign key constraints
  4649.             </summary>
  4650.         </member>
  4651.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.Flags">
  4652.             <summary>
  4653.             Gets/Sets the extra behavioral flags.
  4654.             </summary>
  4655.         </member>
  4656.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.SetDefaults">
  4657.             <summary>
  4658.             If enabled, apply the default connection settings to opened databases.
  4659.             </summary>
  4660.         </member>
  4661.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.ToFullPath">
  4662.             <summary>
  4663.             If enabled, attempt to resolve the provided data source file name to a
  4664.             full path before opening.
  4665.             </summary>
  4666.         </member>
  4667.         <member name="P:System.Data.SQLite.SQLiteConnectionStringBuilder.NoSharedFlags">
  4668.             <summary>
  4669.             If enabled, skip using the configured shared connection flags.
  4670.             </summary>
  4671.         </member>
  4672.         <member name="T:System.Data.SQLite.TypeAffinity">
  4673.             <summary>
  4674.             SQLite has very limited types, and is inherently text-based.  The first 5 types below represent the sum of all types SQLite
  4675.             understands.  The DateTime extension to the spec is for internal use only.
  4676.             </summary>
  4677.         </member>
  4678.         <member name="F:System.Data.SQLite.TypeAffinity.Uninitialized">
  4679.             <summary>
  4680.             Not used
  4681.             </summary>
  4682.         </member>
  4683.         <member name="F:System.Data.SQLite.TypeAffinity.Int64">
  4684.             <summary>
  4685.             All integers in SQLite default to Int64
  4686.             </summary>
  4687.         </member>
  4688.         <member name="F:System.Data.SQLite.TypeAffinity.Double">
  4689.             <summary>
  4690.             All floating point numbers in SQLite default to double
  4691.             </summary>
  4692.         </member>
  4693.         <member name="F:System.Data.SQLite.TypeAffinity.Text">
  4694.             <summary>
  4695.             The default data type of SQLite is text
  4696.             </summary>
  4697.         </member>
  4698.         <member name="F:System.Data.SQLite.TypeAffinity.Blob">
  4699.             <summary>
  4700.             Typically blob types are only seen when returned from a function
  4701.             </summary>
  4702.         </member>
  4703.         <member name="F:System.Data.SQLite.TypeAffinity.Null">
  4704.             <summary>
  4705.             Null types can be returned from functions
  4706.             </summary>
  4707.         </member>
  4708.         <member name="F:System.Data.SQLite.TypeAffinity.DateTime">
  4709.             <summary>
  4710.             Used internally by this provider
  4711.             </summary>
  4712.         </member>
  4713.         <member name="F:System.Data.SQLite.TypeAffinity.None">
  4714.             <summary>
  4715.             Used internally by this provider
  4716.             </summary>
  4717.         </member>
  4718.         <member name="T:System.Data.SQLite.SQLiteConnectionEventType">
  4719.             <summary>
  4720.             These are the event types associated with the
  4721.             <see cref="T:System.Data.SQLite.SQLiteConnectionEventHandler"/>
  4722.             delegate (and its corresponding event) and the
  4723.             <see cref="T:System.Data.SQLite.ConnectionEventArgs"/> class.
  4724.             </summary>
  4725.         </member>
  4726.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.Invalid">
  4727.             <summary>
  4728.             Not used.
  4729.             </summary>
  4730.         </member>
  4731.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.Unknown">
  4732.             <summary>
  4733.             Not used.
  4734.             </summary>
  4735.         </member>
  4736.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.Opening">
  4737.             <summary>
  4738.             The connection is being opened.
  4739.             </summary>
  4740.         </member>
  4741.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.ConnectionString">
  4742.             <summary>
  4743.             The connection string has been parsed.
  4744.             </summary>
  4745.         </member>
  4746.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.Opened">
  4747.             <summary>
  4748.             The connection was opened.
  4749.             </summary>
  4750.         </member>
  4751.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.ChangeDatabase">
  4752.             <summary>
  4753.             The <see cref="F:System.Data.SQLite.SQLiteConnectionEventType.ChangeDatabase"/> method was called on the
  4754.             connection.
  4755.             </summary>
  4756.         </member>
  4757.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.NewTransaction">
  4758.             <summary>
  4759.             A transaction was created using the connection.
  4760.             </summary>
  4761.         </member>
  4762.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.EnlistTransaction">
  4763.             <summary>
  4764.             The connection was enlisted into a transaction.
  4765.             </summary>
  4766.         </member>
  4767.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.NewCommand">
  4768.             <summary>
  4769.             A command was created using the connection.
  4770.             </summary>
  4771.         </member>
  4772.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.NewDataReader">
  4773.             <summary>
  4774.             A data reader was created using the connection.
  4775.             </summary>
  4776.         </member>
  4777.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.NewCriticalHandle">
  4778.             <summary>
  4779.             An instance of a <see cref="T:System.Runtime.InteropServices.CriticalHandle"/> derived class has
  4780.             been created to wrap a native resource.
  4781.             </summary>
  4782.         </member>
  4783.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.Closing">
  4784.             <summary>
  4785.             The connection is being closed.
  4786.             </summary>
  4787.         </member>
  4788.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.Closed">
  4789.             <summary>
  4790.             The connection was closed.
  4791.             </summary>
  4792.         </member>
  4793.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.DisposingCommand">
  4794.             <summary>
  4795.             A command is being disposed.
  4796.             </summary>
  4797.         </member>
  4798.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.DisposingDataReader">
  4799.             <summary>
  4800.             A data reader is being disposed.
  4801.             </summary>
  4802.         </member>
  4803.         <member name="F:System.Data.SQLite.SQLiteConnectionEventType.ClosingDataReader">
  4804.             <summary>
  4805.             A data reader is being closed.
  4806.             </summary>
  4807.         </member>
  4808.         <member name="T:System.Data.SQLite.SQLiteDateFormats">
  4809.              <summary>
  4810.              This implementation of SQLite for ADO.NET can process date/time fields in
  4811.              databases in one of six formats.
  4812.              </summary>
  4813.              <remarks>
  4814.              ISO8601 format is more compatible, readable, fully-processable, but less
  4815.              accurate as it does not provide time down to fractions of a second.
  4816.              JulianDay is the numeric format the SQLite uses internally and is arguably
  4817.              the most compatible with 3rd party tools.  It is not readable as text
  4818.              without post-processing.  Ticks less compatible with 3rd party tools that
  4819.              query the database, and renders the DateTime field unreadable as text
  4820.              without post-processing.  UnixEpoch is more compatible with Unix systems.
  4821.              InvariantCulture allows the configured format for the invariant culture
  4822.              format to be used and is human readable.  CurrentCulture allows the
  4823.              configured format for the current culture to be used and is also human
  4824.              readable.
  4825.             
  4826.              The preferred order of choosing a DateTime format is JulianDay, ISO8601,
  4827.              and then Ticks.  Ticks is mainly present for legacy code support.
  4828.              </remarks>
  4829.         </member>
  4830.         <member name="F:System.Data.SQLite.SQLiteDateFormats.Ticks">
  4831.             <summary>
  4832.             Use the value of DateTime.Ticks.  This value is not recommended and is not well supported with LINQ.
  4833.             </summary>
  4834.         </member>
  4835.         <member name="F:System.Data.SQLite.SQLiteDateFormats.ISO8601">
  4836.             <summary>
  4837.             Use the ISO-8601 format.  Uses the "yyyy-MM-dd HH:mm:ss.FFFFFFFK" format for UTC DateTime values and
  4838.             "yyyy-MM-dd HH:mm:ss.FFFFFFF" format for local DateTime values).
  4839.             </summary>
  4840.         </member>
  4841.         <member name="F:System.Data.SQLite.SQLiteDateFormats.JulianDay">
  4842.             <summary>
  4843.             The interval of time in days and fractions of a day since January 1, 4713 BC.
  4844.             </summary>
  4845.         </member>
  4846.         <member name="F:System.Data.SQLite.SQLiteDateFormats.UnixEpoch">
  4847.             <summary>
  4848.             The whole number of seconds since the Unix epoch (January 1, 1970).
  4849.             </summary>
  4850.         </member>
  4851.         <member name="F:System.Data.SQLite.SQLiteDateFormats.InvariantCulture">
  4852.             <summary>
  4853.             Any culture-independent string value that the .NET Framework can interpret as a valid DateTime.
  4854.             </summary>
  4855.         </member>
  4856.         <member name="F:System.Data.SQLite.SQLiteDateFormats.CurrentCulture">
  4857.             <summary>
  4858.             Any string value that the .NET Framework can interpret as a valid DateTime using the current culture.
  4859.             </summary>
  4860.         </member>
  4861.         <member name="F:System.Data.SQLite.SQLiteDateFormats.Default">
  4862.             <summary>
  4863.             The default format for this provider.
  4864.             </summary>
  4865.         </member>
  4866.         <member name="T:System.Data.SQLite.SQLiteJournalModeEnum">
  4867.              <summary>
  4868.              This enum determines how SQLite treats its journal file.
  4869.              </summary>
  4870.              <remarks>
  4871.              By default SQLite will create and delete the journal file when needed during a transaction.
  4872.              However, for some computers running certain filesystem monitoring tools, the rapid
  4873.              creation and deletion of the journal file can cause those programs to fail, or to interfere with SQLite.
  4874.             
  4875.              If a program or virus scanner is interfering with SQLite's journal file, you may receive errors like "unable to open database file"
  4876.              when starting a transaction.  If this is happening, you may want to change the default journal mode to Persist.
  4877.              </remarks>
  4878.         </member>
  4879.         <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Default">
  4880.             <summary>
  4881.             The default mode, this causes SQLite to use the existing journaling mode for the database.
  4882.             </summary>
  4883.         </member>
  4884.         <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Delete">
  4885.             <summary>
  4886.             SQLite will create and destroy the journal file as-needed.
  4887.             </summary>
  4888.         </member>
  4889.         <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Persist">
  4890.             <summary>
  4891.             When this is set, SQLite will keep the journal file even after a transaction has completed.  It's contents will be erased,
  4892.             and the journal re-used as often as needed.  If it is deleted, it will be recreated the next time it is needed.
  4893.             </summary>
  4894.         </member>
  4895.         <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Off">
  4896.             <summary>
  4897.             This option disables the rollback journal entirely.  Interrupted transactions or a program crash can cause database
  4898.             corruption in this mode!
  4899.             </summary>
  4900.         </member>
  4901.         <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Truncate">
  4902.             <summary>
  4903.             SQLite will truncate the journal file to zero-length instead of deleting it.
  4904.             </summary>
  4905.         </member>
  4906.         <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Memory">
  4907.             <summary>
  4908.             SQLite will store the journal in volatile RAM.  This saves disk I/O but at the expense of database safety and integrity.
  4909.             If the application using SQLite crashes in the middle of a transaction when the MEMORY journaling mode is set, then the
  4910.             database file will very likely go corrupt.
  4911.             </summary>
  4912.         </member>
  4913.         <member name="F:System.Data.SQLite.SQLiteJournalModeEnum.Wal">
  4914.             <summary>
  4915.             SQLite uses a write-ahead log instead of a rollback journal to implement transactions.  The WAL journaling mode is persistent;
  4916.             after being set it stays in effect across multiple database connections and after closing and reopening the database. A database
  4917.             in WAL journaling mode can only be accessed by SQLite version 3.7.0 or later.
  4918.             </summary>
  4919.         </member>
  4920.         <member name="T:System.Data.SQLite.SQLiteSynchronousEnum">
  4921.             <summary>
  4922.             Possible values for the "synchronous" database setting.  This setting determines
  4923.             how often the database engine calls the xSync method of the VFS.
  4924.             </summary>
  4925.         </member>
  4926.         <member name="F:System.Data.SQLite.SQLiteSynchronousEnum.Default">
  4927.             <summary>
  4928.             Use the default "synchronous" database setting.  Currently, this should be
  4929.             the same as using the FULL mode.
  4930.             </summary>
  4931.         </member>
  4932.         <member name="F:System.Data.SQLite.SQLiteSynchronousEnum.Off">
  4933.             <summary>
  4934.             The database engine continues without syncing as soon as it has handed
  4935.             data off to the operating system.  If the application running SQLite
  4936.             crashes, the data will be safe, but the database might become corrupted
  4937.             if the operating system crashes or the computer loses power before that
  4938.             data has been written to the disk surface.
  4939.             </summary>
  4940.         </member>
  4941.         <member name="F:System.Data.SQLite.SQLiteSynchronousEnum.Normal">
  4942.             <summary>
  4943.             The database engine will still sync at the most critical moments, but
  4944.             less often than in FULL mode.  There is a very small (though non-zero)
  4945.             chance that a power failure at just the wrong time could corrupt the
  4946.             database in NORMAL mode.
  4947.             </summary>
  4948.         </member>
  4949.         <member name="F:System.Data.SQLite.SQLiteSynchronousEnum.Full">
  4950.             <summary>
  4951.             The database engine will use the xSync method of the VFS to ensure that
  4952.             all content is safely written to the disk surface prior to continuing.
  4953.             This ensures that an operating system crash or power failure will not
  4954.             corrupt the database.  FULL synchronous is very safe, but it is also
  4955.             slower.
  4956.             </summary>
  4957.         </member>
  4958.         <member name="T:System.Data.SQLite.SQLiteExecuteType">
  4959.             <summary>
  4960.             The requested command execution type.  This controls which method of the
  4961.             <see cref="T:System.Data.SQLite.SQLiteCommand"/> object will be called.
  4962.             </summary>
  4963.         </member>
  4964.         <member name="F:System.Data.SQLite.SQLiteExecuteType.None">
  4965.             <summary>
  4966.             Do nothing.  No method will be called.
  4967.             </summary>
  4968.         </member>
  4969.         <member name="F:System.Data.SQLite.SQLiteExecuteType.NonQuery">
  4970.             <summary>
  4971.             The command is not expected to return a result -OR- the result is not
  4972.             needed.  The <see cref="M:System.Data.SQLite.SQLiteCommand.ExecuteNonQuery"/> or
  4973.             <see cref="M:System.Data.SQLite.SQLiteCommand.ExecuteNonQuery(System.Data.CommandBehavior)"/>  method
  4974.             will be called.
  4975.             </summary>
  4976.         </member>
  4977.         <member name="F:System.Data.SQLite.SQLiteExecuteType.Scalar">
  4978.             <summary>
  4979.             The command is expected to return a scalar result -OR- the result should
  4980.             be limited to a scalar result.  The <see cref="M:System.Data.SQLite.SQLiteCommand.ExecuteScalar"/>
  4981.             or <see cref="M:System.Data.SQLite.SQLiteCommand.ExecuteScalar(System.Data.CommandBehavior)"/> method will
  4982.             be called.
  4983.             </summary>
  4984.         </member>
  4985.         <member name="F:System.Data.SQLite.SQLiteExecuteType.Reader">
  4986.             <summary>
  4987.             The command is expected to return <see cref="T:System.Data.SQLite.SQLiteDataReader"/> result.
  4988.             The <see cref="M:System.Data.SQLite.SQLiteCommand.ExecuteReader"/> or
  4989.             <see cref="M:System.Data.SQLite.SQLiteCommand.ExecuteReader(System.Data.CommandBehavior)"/> method will
  4990.             be called.
  4991.             </summary>
  4992.         </member>
  4993.         <member name="F:System.Data.SQLite.SQLiteExecuteType.Default">
  4994.             <summary>
  4995.             Use the default command execution type.  Using this value is the same
  4996.             as using the <see cref="F:System.Data.SQLite.SQLiteExecuteType.NonQuery"/> value.
  4997.             </summary>
  4998.         </member>
  4999.         <member name="T:System.Data.SQLite.SQLiteAuthorizerActionCode">
  5000.             <summary>
  5001.             The action code responsible for the current call into the authorizer.
  5002.             </summary>
  5003.         </member>
  5004.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.None">
  5005.             <summary>
  5006.             No action is being performed.  This value should not be used from
  5007.             external code.
  5008.             </summary>
  5009.         </member>
  5010.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Copy">
  5011.             <summary>
  5012.             No longer used.
  5013.             </summary>
  5014.         </member>
  5015.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateIndex">
  5016.              <summary>
  5017.              An index will be created.  The action-specific arguments are the
  5018.              index name and the table name.
  5019.             
  5020.              </summary>
  5021.         </member>
  5022.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateTable">
  5023.             <summary>
  5024.             A table will be created.  The action-specific arguments are the
  5025.             table name and a null value.
  5026.             </summary>
  5027.         </member>
  5028.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateTempIndex">
  5029.             <summary>
  5030.             A temporary index will be created.  The action-specific arguments
  5031.             are the index name and the table name.
  5032.             </summary>
  5033.         </member>
  5034.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateTempTable">
  5035.             <summary>
  5036.             A temporary table will be created.  The action-specific arguments
  5037.             are the table name and a null value.
  5038.             </summary>
  5039.         </member>
  5040.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateTempTrigger">
  5041.             <summary>
  5042.             A temporary trigger will be created.  The action-specific arguments
  5043.             are the trigger name and the table name.
  5044.             </summary>
  5045.         </member>
  5046.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateTempView">
  5047.             <summary>
  5048.             A temporary view will be created.  The action-specific arguments are
  5049.             the view name and a null value.
  5050.             </summary>
  5051.         </member>
  5052.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateTrigger">
  5053.             <summary>
  5054.             A trigger will be created.  The action-specific arguments are the
  5055.             trigger name and the table name.
  5056.             </summary>
  5057.         </member>
  5058.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateView">
  5059.             <summary>
  5060.             A view will be created.  The action-specific arguments are the view
  5061.             name and a null value.
  5062.             </summary>
  5063.         </member>
  5064.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Delete">
  5065.             <summary>
  5066.             A DELETE statement will be executed.  The action-specific arguments
  5067.             are the table name and a null value.
  5068.             </summary>
  5069.         </member>
  5070.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropIndex">
  5071.             <summary>
  5072.             An index will be dropped.  The action-specific arguments are the
  5073.             index name and the table name.
  5074.             </summary>
  5075.         </member>
  5076.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropTable">
  5077.             <summary>
  5078.             A table will be dropped.  The action-specific arguments are the tables
  5079.             name and a null value.
  5080.             </summary>
  5081.         </member>
  5082.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropTempIndex">
  5083.             <summary>
  5084.             A temporary index will be dropped.  The action-specific arguments are
  5085.             the index name and the table name.
  5086.             </summary>
  5087.         </member>
  5088.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropTempTable">
  5089.             <summary>
  5090.             A temporary table will be dropped.  The action-specific arguments are
  5091.             the table name and a null value.
  5092.             </summary>
  5093.         </member>
  5094.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropTempTrigger">
  5095.             <summary>
  5096.             A temporary trigger will be dropped.  The action-specific arguments
  5097.             are the trigger name and the table name.
  5098.             </summary>
  5099.         </member>
  5100.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropTempView">
  5101.             <summary>
  5102.             A temporary view will be dropped.  The action-specific arguments are
  5103.             the view name and a null value.
  5104.             </summary>
  5105.         </member>
  5106.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropTrigger">
  5107.             <summary>
  5108.             A trigger will be dropped.  The action-specific arguments are the
  5109.             trigger name and the table name.
  5110.             </summary>
  5111.         </member>
  5112.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropView">
  5113.             <summary>
  5114.             A view will be dropped.  The action-specific arguments are the view
  5115.             name and a null value.
  5116.             </summary>
  5117.         </member>
  5118.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Insert">
  5119.             <summary>
  5120.             An INSERT statement will be executed.  The action-specific arguments
  5121.             are the table name and a null value.
  5122.             </summary>
  5123.         </member>
  5124.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Pragma">
  5125.             <summary>
  5126.             A PRAGMA statement will be executed.  The action-specific arguments
  5127.             are the name of the PRAGMA and the new value or a null value.
  5128.             </summary>
  5129.         </member>
  5130.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Read">
  5131.             <summary>
  5132.             A table column will be read.  The action-specific arguments are the
  5133.             table name and the column name.
  5134.             </summary>
  5135.         </member>
  5136.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Select">
  5137.             <summary>
  5138.             A SELECT statement will be executed.  The action-specific arguments
  5139.             are both null values.
  5140.             </summary>
  5141.         </member>
  5142.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Transaction">
  5143.             <summary>
  5144.             A transaction will be started, committed, or rolled back.  The
  5145.             action-specific arguments are the name of the operation (BEGIN,
  5146.             COMMIT, or ROLLBACK) and a null value.
  5147.             </summary>
  5148.         </member>
  5149.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Update">
  5150.             <summary>
  5151.             An UPDATE statement will be executed.  The action-specific arguments
  5152.             are the table name and the column name.
  5153.             </summary>
  5154.         </member>
  5155.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Attach">
  5156.             <summary>
  5157.             A database will be attached to the connection.  The action-specific
  5158.             arguments are the database file name and a null value.
  5159.             </summary>
  5160.         </member>
  5161.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Detach">
  5162.             <summary>
  5163.             A database will be detached from the connection.  The action-specific
  5164.             arguments are the database name and a null value.
  5165.             </summary>
  5166.         </member>
  5167.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.AlterTable">
  5168.             <summary>
  5169.             The schema of a table will be altered.  The action-specific arguments
  5170.             are the database name and the table name.
  5171.             </summary>
  5172.         </member>
  5173.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Reindex">
  5174.             <summary>
  5175.             An index will be deleted and then recreated.  The action-specific
  5176.             arguments are the index name and a null value.
  5177.             </summary>
  5178.         </member>
  5179.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Analyze">
  5180.             <summary>
  5181.             A table will be analyzed to gathers statistics about it.  The
  5182.             action-specific arguments are the table name and a null value.
  5183.             </summary>
  5184.         </member>
  5185.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.CreateVtable">
  5186.             <summary>
  5187.             A virtual table will be created.  The action-specific arguments are
  5188.             the table name and the module name.
  5189.             </summary>
  5190.         </member>
  5191.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.DropVtable">
  5192.             <summary>
  5193.             A virtual table will be dropped.  The action-specific arguments are
  5194.             the table name and the module name.
  5195.             </summary>
  5196.         </member>
  5197.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Function">
  5198.             <summary>
  5199.             A SQL function will be called.  The action-specific arguments are a
  5200.             null value and the function name.
  5201.             </summary>
  5202.         </member>
  5203.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Savepoint">
  5204.             <summary>
  5205.             A savepoint will be created, released, or rolled back.  The
  5206.             action-specific arguments are the name of the operation (BEGIN,
  5207.             RELEASE, or ROLLBACK) and the savepoint name.
  5208.             </summary>
  5209.         </member>
  5210.         <member name="F:System.Data.SQLite.SQLiteAuthorizerActionCode.Recursive">
  5211.             <summary>
  5212.             A recursive query will be executed.  The action-specific arguments
  5213.             are two null values.
  5214.             </summary>
  5215.         </member>
  5216.         <member name="T:System.Data.SQLite.SQLiteAuthorizerReturnCode">
  5217.             <summary>
  5218.             The return code for the current call into the authorizer.
  5219.             </summary>
  5220.         </member>
  5221.         <member name="F:System.Data.SQLite.SQLiteAuthorizerReturnCode.Ok">
  5222.             <summary>
  5223.             The action will be allowed.
  5224.             </summary>
  5225.         </member>
  5226.         <member name="F:System.Data.SQLite.SQLiteAuthorizerReturnCode.Deny">
  5227.             <summary>
  5228.             The overall action will be disallowed and an error message will be
  5229.             returned from the query preparation method.
  5230.             </summary>
  5231.         </member>
  5232.         <member name="F:System.Data.SQLite.SQLiteAuthorizerReturnCode.Ignore">
  5233.             <summary>
  5234.             The specific action will be disallowed; however, the overall action
  5235.             will continue.  The exact effects of this return code vary depending
  5236.             on the specific action, please refer to the SQLite core library
  5237.             documentation for futher details.
  5238.             </summary>
  5239.         </member>
  5240.         <member name="T:System.Data.SQLite.SQLiteType">
  5241.             <summary>
  5242.             Class used internally to determine the datatype of a column in a resultset
  5243.             </summary>
  5244.         </member>
  5245.         <member name="F:System.Data.SQLite.SQLiteType.Type">
  5246.             <summary>
  5247.             The DbType of the column, or DbType.Object if it cannot be determined
  5248.             </summary>
  5249.         </member>
  5250.         <member name="F:System.Data.SQLite.SQLiteType.Affinity">
  5251.             <summary>
  5252.             The affinity of a column, used for expressions or when Type is DbType.Object
  5253.             </summary>
  5254.         </member>
  5255.         <member name="M:System.Data.SQLite.SQLiteType.#ctor">
  5256.             <summary>
  5257.             Constructs a default instance of this type.
  5258.             </summary>
  5259.         </member>
  5260.         <member name="M:System.Data.SQLite.SQLiteType.#ctor(System.Data.SQLite.TypeAffinity,System.Data.DbType)">
  5261.             <summary>
  5262.             Constructs an instance of this type with the specified field values.
  5263.             </summary>
  5264.             <param name="affinity">
  5265.             The type affinity to use for the new instance.
  5266.             </param>
  5267.             <param name="type">
  5268.             The database type to use for the new instance.
  5269.             </param>
  5270.         </member>
  5271.         <member name="T:System.Data.SQLite.SQLiteDataAdapter">
  5272.             <summary>
  5273.             SQLite implementation of DbDataAdapter.
  5274.             </summary>
  5275.         </member>
  5276.         <member name="M:System.Data.SQLite.SQLiteDataAdapter.#ctor">
  5277.             <overloads>
  5278.             This class is just a shell around the DbDataAdapter.  Nothing from
  5279.             DbDataAdapter is overridden here, just a few constructors are defined.
  5280.             </overloads>
  5281.             <summary>
  5282.             Default constructor.
  5283.             </summary>
  5284.         </member>
  5285.         <member name="M:System.Data.SQLite.SQLiteDataAdapter.#ctor(System.Data.SQLite.SQLiteCommand)">
  5286.             <summary>
  5287.             Constructs a data adapter using the specified select command.
  5288.             </summary>
  5289.             <param name="cmd">
  5290.             The select command to associate with the adapter.
  5291.             </param>
  5292.         </member>
  5293.         <member name="M:System.Data.SQLite.SQLiteDataAdapter.#ctor(System.String,System.Data.SQLite.SQLiteConnection)">
  5294.             <summary>
  5295.             Constructs a data adapter with the supplied select command text and
  5296.             associated with the specified connection.
  5297.             </summary>
  5298.             <param name="commandText">
  5299.             The select command text to associate with the data adapter.
  5300.             </param>
  5301.             <param name="connection">
  5302.             The connection to associate with the select command.
  5303.             </param>
  5304.         </member>
  5305.         <member name="M:System.Data.SQLite.SQLiteDataAdapter.#ctor(System.String,System.String)">
  5306.             <summary>
  5307.             Constructs a data adapter with the specified select command text,
  5308.             and using the specified database connection string.
  5309.             </summary>
  5310.             <param name="commandText">
  5311.             The select command text to use to construct a select command.
  5312.             </param>
  5313.             <param name="connectionString">
  5314.             A connection string suitable for passing to a new SQLiteConnection,
  5315.             which is associated with the select command.
  5316.             </param>
  5317.         </member>
  5318.         <member name="M:System.Data.SQLite.SQLiteDataAdapter.#ctor(System.String,System.String,System.Boolean)">
  5319.             <summary>
  5320.             Constructs a data adapter with the specified select command text,
  5321.             and using the specified database connection string.
  5322.             </summary>
  5323.             <param name="commandText">
  5324.             The select command text to use to construct a select command.
  5325.             </param>
  5326.             <param name="connectionString">
  5327.             A connection string suitable for passing to a new SQLiteConnection,
  5328.             which is associated with the select command.
  5329.             </param>
  5330.             <param name="parseViaFramework">
  5331.             Non-zero to parse the connection string using the built-in (i.e.
  5332.             framework provided) parser when opening the connection.
  5333.             </param>
  5334.         </member>
  5335.         <member name="M:System.Data.SQLite.SQLiteDataAdapter.OnRowUpdating(System.Data.Common.RowUpdatingEventArgs)">
  5336.             <summary>
  5337.             Raised by the underlying DbDataAdapter when a row is being updated
  5338.             </summary>
  5339.             <param name="value">The event's specifics</param>
  5340.         </member>
  5341.         <member name="M:System.Data.SQLite.SQLiteDataAdapter.OnRowUpdated(System.Data.Common.RowUpdatedEventArgs)">
  5342.             <summary>
  5343.             Raised by DbDataAdapter after a row is updated
  5344.             </summary>
  5345.             <param name="value">The event's specifics</param>
  5346.         </member>
  5347.         <member name="E:System.Data.SQLite.SQLiteDataAdapter.RowUpdating">
  5348.             <summary>
  5349.             Row updating event handler
  5350.             </summary>
  5351.         </member>
  5352.         <member name="E:System.Data.SQLite.SQLiteDataAdapter.RowUpdated">
  5353.             <summary>
  5354.             Row updated event handler
  5355.             </summary>
  5356.         </member>
  5357.         <member name="P:System.Data.SQLite.SQLiteDataAdapter.SelectCommand">
  5358.             <summary>
  5359.             Gets/sets the select command for this DataAdapter
  5360.             </summary>
  5361.         </member>
  5362.         <member name="P:System.Data.SQLite.SQLiteDataAdapter.InsertCommand">
  5363.             <summary>
  5364.             Gets/sets the insert command for this DataAdapter
  5365.             </summary>
  5366.         </member>
  5367.         <member name="P:System.Data.SQLite.SQLiteDataAdapter.UpdateCommand">
  5368.             <summary>
  5369.             Gets/sets the update command for this DataAdapter
  5370.             </summary>
  5371.         </member>
  5372.         <member name="P:System.Data.SQLite.SQLiteDataAdapter.DeleteCommand">
  5373.             <summary>
  5374.             Gets/sets the delete command for this DataAdapter
  5375.             </summary>
  5376.         </member>
  5377.         <member name="T:System.Data.SQLite.SQLiteDataReader">
  5378.             <summary>
  5379.             SQLite implementation of DbDataReader.
  5380.             </summary>
  5381.         </member>
  5382.         <member name="F:System.Data.SQLite.SQLiteDataReader._command">
  5383.             <summary>
  5384.             Underlying command this reader is attached to
  5385.             </summary>
  5386.         </member>
  5387.         <member name="F:System.Data.SQLite.SQLiteDataReader._flags">
  5388.             <summary>
  5389.             The flags pertaining to the associated connection (via the command).
  5390.             </summary>
  5391.         </member>
  5392.         <member name="F:System.Data.SQLite.SQLiteDataReader._activeStatementIndex">
  5393.             <summary>
  5394.             Index of the current statement in the command being processed
  5395.             </summary>
  5396.         </member>
  5397.         <member name="F:System.Data.SQLite.SQLiteDataReader._activeStatement">
  5398.             <summary>
  5399.             Current statement being Read()
  5400.             </summary>
  5401.         </member>
  5402.         <member name="F:System.Data.SQLite.SQLiteDataReader._readingState">
  5403.             <summary>
  5404.             State of the current statement being processed.
  5405.             -1 = First Step() executed, so the first Read() will be ignored
  5406.              0 = Actively reading
  5407.              1 = Finished reading
  5408.              2 = Non-row-returning statement, no records
  5409.             </summary>
  5410.         </member>
  5411.         <member name="F:System.Data.SQLite.SQLiteDataReader._rowsAffected">
  5412.             <summary>
  5413.             Number of records affected by the insert/update statements executed on the command
  5414.             </summary>
  5415.         </member>
  5416.         <member name="F:System.Data.SQLite.SQLiteDataReader._fieldCount">
  5417.             <summary>
  5418.             Count of fields (columns) in the row-returning statement currently being processed
  5419.             </summary>
  5420.         </member>
  5421.         <member name="F:System.Data.SQLite.SQLiteDataReader._stepCount">
  5422.             <summary>
  5423.             The number of calls to Step() that have returned true (i.e. the number of rows that
  5424.             have been read in the current result set).
  5425.             </summary>
  5426.         </member>
  5427.         <member name="F:System.Data.SQLite.SQLiteDataReader._fieldIndexes">
  5428.             <summary>
  5429.             Maps the field (column) names to their corresponding indexes within the results.
  5430.             </summary>
  5431.         </member>
  5432.         <member name="F:System.Data.SQLite.SQLiteDataReader._fieldTypeArray">
  5433.             <summary>
  5434.             Datatypes of active fields (columns) in the current statement, used for type-restricting data
  5435.             </summary>
  5436.         </member>
  5437.         <member name="F:System.Data.SQLite.SQLiteDataReader._commandBehavior">
  5438.             <summary>
  5439.             The behavior of the datareader
  5440.             </summary>
  5441.         </member>
  5442.         <member name="F:System.Data.SQLite.SQLiteDataReader._disposeCommand">
  5443.             <summary>
  5444.             If set, then dispose of the command object when the reader is finished
  5445.             </summary>
  5446.         </member>
  5447.         <member name="F:System.Data.SQLite.SQLiteDataReader._throwOnDisposed">
  5448.             <summary>
  5449.             If set, then raise an exception when the object is accessed after being disposed.
  5450.             </summary>
  5451.         </member>
  5452.         <member name="F:System.Data.SQLite.SQLiteDataReader._keyInfo">
  5453.             <summary>
  5454.             An array of rowid's for the active statement if CommandBehavior.KeyInfo is specified
  5455.             </summary>
  5456.         </member>
  5457.         <member name="F:System.Data.SQLite.SQLiteDataReader._version">
  5458.             <summary>
  5459.             Matches the version of the connection.
  5460.             </summary>
  5461.         </member>
  5462.         <member name="F:System.Data.SQLite.SQLiteDataReader._baseSchemaName">
  5463.             <summary>
  5464.             The "stub" (i.e. placeholder) base schema name to use when returning
  5465.             column schema information.  Matches the base schema name used by the
  5466.             associated connection.
  5467.             </summary>
  5468.         </member>
  5469.         <member name="M:System.Data.SQLite.SQLiteDataReader.#ctor(System.Data.SQLite.SQLiteCommand,System.Data.CommandBehavior)">
  5470.             <summary>
  5471.             Internal constructor, initializes the datareader and sets up to begin executing statements
  5472.             </summary>
  5473.             <param name="cmd">The SQLiteCommand this data reader is for</param>
  5474.             <param name="behave">The expected behavior of the data reader</param>
  5475.         </member>
  5476.         <member name="M:System.Data.SQLite.SQLiteDataReader.Dispose(System.Boolean)">
  5477.             <summary>
  5478.             Dispose of all resources used by this datareader.
  5479.             </summary>
  5480.             <param name="disposing"></param>
  5481.         </member>
  5482.         <member name="M:System.Data.SQLite.SQLiteDataReader.Close">
  5483.             <summary>
  5484.             Closes the datareader, potentially closing the connection as well if CommandBehavior.CloseConnection was specified.
  5485.             </summary>
  5486.         </member>
  5487.         <member name="M:System.Data.SQLite.SQLiteDataReader.CheckClosed">
  5488.             <summary>
  5489.             Throw an error if the datareader is closed
  5490.             </summary>
  5491.         </member>
  5492.         <member name="M:System.Data.SQLite.SQLiteDataReader.CheckValidRow">
  5493.             <summary>
  5494.             Throw an error if a row is not loaded
  5495.             </summary>
  5496.         </member>
  5497.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetEnumerator">
  5498.             <summary>
  5499.             Enumerator support
  5500.             </summary>
  5501.             <returns>Returns a DbEnumerator object.</returns>
  5502.         </member>
  5503.         <member name="M:System.Data.SQLite.SQLiteDataReader.RefreshFlags">
  5504.             <summary>
  5505.             Forces the connection flags cached by this data reader to be refreshed
  5506.             from the underlying connection.
  5507.             </summary>
  5508.         </member>
  5509.         <member name="M:System.Data.SQLite.SQLiteDataReader.VerifyType(System.Int32,System.Data.DbType)">
  5510.              <summary>
  5511.              SQLite is inherently un-typed.  All datatypes in SQLite are natively strings.  The definition of the columns of a table
  5512.              and the affinity of returned types are all we have to go on to type-restrict data in the reader.
  5513.             
  5514.              This function attempts to verify that the type of data being requested of a column matches the datatype of the column.  In
  5515.              the case of columns that are not backed into a table definition, we attempt to match up the affinity of a column (int, double, string or blob)
  5516.              to a set of known types that closely match that affinity.  It's not an exact science, but its the best we can do.
  5517.              </summary>
  5518.              <returns>
  5519.              This function throws an InvalidTypeCast() exception if the requested type doesn't match the column's definition or affinity.
  5520.              </returns>
  5521.              <param name="i">The index of the column to type-check</param>
  5522.              <param name="typ">The type we want to get out of the column</param>
  5523.         </member>
  5524.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetBoolean(System.Int32)">
  5525.             <summary>
  5526.             Retrieves the column as a boolean value
  5527.             </summary>
  5528.             <param name="i">The index of the column to retrieve</param>
  5529.             <returns>bool</returns>
  5530.         </member>
  5531.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetByte(System.Int32)">
  5532.             <summary>
  5533.             Retrieves the column as a single byte value
  5534.             </summary>
  5535.             <param name="i">The index of the column to retrieve</param>
  5536.             <returns>byte</returns>
  5537.         </member>
  5538.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
  5539.             <summary>
  5540.             Retrieves a column as an array of bytes (blob)
  5541.             </summary>
  5542.             <param name="i">The index of the column to retrieve</param>
  5543.             <param name="fieldOffset">The zero-based index of where to begin reading the data</param>
  5544.             <param name="buffer">The buffer to write the bytes into</param>
  5545.             <param name="bufferoffset">The zero-based index of where to begin writing into the array</param>
  5546.             <param name="length">The number of bytes to retrieve</param>
  5547.             <returns>The actual number of bytes written into the array</returns>
  5548.             <remarks>
  5549.             To determine the number of bytes in the column, pass a null value for the buffer.  The total length will be returned.
  5550.             </remarks>
  5551.         </member>
  5552.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetChar(System.Int32)">
  5553.             <summary>
  5554.             Returns the column as a single character
  5555.             </summary>
  5556.             <param name="i">The index of the column to retrieve</param>
  5557.             <returns>char</returns>
  5558.         </member>
  5559.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
  5560.             <summary>
  5561.             Retrieves a column as an array of chars (blob)
  5562.             </summary>
  5563.             <param name="i">The index of the column to retrieve</param>
  5564.             <param name="fieldoffset">The zero-based index of where to begin reading the data</param>
  5565.             <param name="buffer">The buffer to write the characters into</param>
  5566.             <param name="bufferoffset">The zero-based index of where to begin writing into the array</param>
  5567.             <param name="length">The number of bytes to retrieve</param>
  5568.             <returns>The actual number of characters written into the array</returns>
  5569.             <remarks>
  5570.             To determine the number of characters in the column, pass a null value for the buffer.  The total length will be returned.
  5571.             </remarks>
  5572.         </member>
  5573.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetDataTypeName(System.Int32)">
  5574.             <summary>
  5575.             Retrieves the name of the back-end datatype of the column
  5576.             </summary>
  5577.             <param name="i">The index of the column to retrieve</param>
  5578.             <returns>string</returns>
  5579.         </member>
  5580.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetDateTime(System.Int32)">
  5581.             <summary>
  5582.             Retrieve the column as a date/time value
  5583.             </summary>
  5584.             <param name="i">The index of the column to retrieve</param>
  5585.             <returns>DateTime</returns>
  5586.         </member>
  5587.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetDecimal(System.Int32)">
  5588.             <summary>
  5589.             Retrieve the column as a decimal value
  5590.             </summary>
  5591.             <param name="i">The index of the column to retrieve</param>
  5592.             <returns>decimal</returns>
  5593.         </member>
  5594.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetDouble(System.Int32)">
  5595.             <summary>
  5596.             Returns the column as a double
  5597.             </summary>
  5598.             <param name="i">The index of the column to retrieve</param>
  5599.             <returns>double</returns>
  5600.         </member>
  5601.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetFieldType(System.Int32)">
  5602.             <summary>
  5603.             Returns the .NET type of a given column
  5604.             </summary>
  5605.             <param name="i">The index of the column to retrieve</param>
  5606.             <returns>Type</returns>
  5607.         </member>
  5608.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetFloat(System.Int32)">
  5609.             <summary>
  5610.             Returns a column as a float value
  5611.             </summary>
  5612.             <param name="i">The index of the column to retrieve</param>
  5613.             <returns>float</returns>
  5614.         </member>
  5615.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetGuid(System.Int32)">
  5616.             <summary>
  5617.             Returns the column as a Guid
  5618.             </summary>
  5619.             <param name="i">The index of the column to retrieve</param>
  5620.             <returns>Guid</returns>
  5621.         </member>
  5622.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetInt16(System.Int32)">
  5623.             <summary>
  5624.             Returns the column as a short
  5625.             </summary>
  5626.             <param name="i">The index of the column to retrieve</param>
  5627.             <returns>Int16</returns>
  5628.         </member>
  5629.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetInt32(System.Int32)">
  5630.             <summary>
  5631.             Retrieves the column as an int
  5632.             </summary>
  5633.             <param name="i">The index of the column to retrieve</param>
  5634.             <returns>Int32</returns>
  5635.         </member>
  5636.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetInt64(System.Int32)">
  5637.             <summary>
  5638.             Retrieves the column as a long
  5639.             </summary>
  5640.             <param name="i">The index of the column to retrieve</param>
  5641.             <returns>Int64</returns>
  5642.         </member>
  5643.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetName(System.Int32)">
  5644.             <summary>
  5645.             Retrieves the name of the column
  5646.             </summary>
  5647.             <param name="i">The index of the column to retrieve</param>
  5648.             <returns>string</returns>
  5649.         </member>
  5650.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetOrdinal(System.String)">
  5651.             <summary>
  5652.             Retrieves the i of a column, given its name
  5653.             </summary>
  5654.             <param name="name">The name of the column to retrieve</param>
  5655.             <returns>The int i of the column</returns>
  5656.         </member>
  5657.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetSchemaTable">
  5658.             <summary>
  5659.             Schema information in SQLite is difficult to map into .NET conventions, so a lot of work must be done
  5660.             to gather the necessary information so it can be represented in an ADO.NET manner.
  5661.             </summary>
  5662.             <returns>Returns a DataTable containing the schema information for the active SELECT statement being processed.</returns>
  5663.         </member>
  5664.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetString(System.Int32)">
  5665.             <summary>
  5666.             Retrieves the column as a string
  5667.             </summary>
  5668.             <param name="i">The index of the column to retrieve</param>
  5669.             <returns>string</returns>
  5670.         </member>
  5671.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetValue(System.Int32)">
  5672.             <summary>
  5673.             Retrieves the column as an object corresponding to the underlying datatype of the column
  5674.             </summary>
  5675.             <param name="i">The index of the column to retrieve</param>
  5676.             <returns>object</returns>
  5677.         </member>
  5678.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetValues(System.Object[])">
  5679.             <summary>
  5680.             Retreives the values of multiple columns, up to the size of the supplied array
  5681.             </summary>
  5682.             <param name="values">The array to fill with values from the columns in the current resultset</param>
  5683.             <returns>The number of columns retrieved</returns>
  5684.         </member>
  5685.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetValues">
  5686.             <summary>
  5687.             Returns a collection containing all the column names and values for the
  5688.             current row of data in the current resultset, if any.  If there is no
  5689.             current row or no current resultset, an exception may be thrown.
  5690.             </summary>
  5691.             <returns>
  5692.             The collection containing the column name and value information for the
  5693.             current row of data in the current resultset or null if this information
  5694.             cannot be obtained.
  5695.             </returns>
  5696.         </member>
  5697.         <member name="M:System.Data.SQLite.SQLiteDataReader.IsDBNull(System.Int32)">
  5698.             <summary>
  5699.             Returns True if the specified column is null
  5700.             </summary>
  5701.             <param name="i">The index of the column to retrieve</param>
  5702.             <returns>True or False</returns>
  5703.         </member>
  5704.         <member name="M:System.Data.SQLite.SQLiteDataReader.NextResult">
  5705.             <summary>
  5706.             Moves to the next resultset in multiple row-returning SQL command.
  5707.             </summary>
  5708.             <returns>True if the command was successful and a new resultset is available, False otherwise.</returns>
  5709.         </member>
  5710.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetConnection(System.Data.SQLite.SQLiteDataReader)">
  5711.             <summary>
  5712.             This method attempts to query the database connection associated with
  5713.             the data reader in use.  If the underlying command or connection is
  5714.             unavailable, a null value will be returned.
  5715.             </summary>
  5716.             <returns>
  5717.             The connection object -OR- null if it is unavailable.
  5718.             </returns>
  5719.         </member>
  5720.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetSQLiteType(System.Data.SQLite.SQLiteType,System.String)">
  5721.             <summary>
  5722.             Retrieves the SQLiteType for a given column and row value.
  5723.             </summary>
  5724.             <param name="oldType">
  5725.             The original SQLiteType structure, based only on the column.
  5726.             </param>
  5727.             <param name="text">
  5728.             The textual value of the column for a given row.
  5729.             </param>
  5730.             <returns>
  5731.             The SQLiteType structure.
  5732.             </returns>
  5733.         </member>
  5734.         <member name="M:System.Data.SQLite.SQLiteDataReader.GetSQLiteType(System.Data.SQLite.SQLiteConnectionFlags,System.Int32)">
  5735.             <summary>
  5736.             Retrieves the SQLiteType for a given column, and caches it to avoid repetetive interop calls.
  5737.             </summary>
  5738.             <param name="flags">The flags associated with the parent connection object.</param>
  5739.             <param name="i">The index of the column to retrieve</param>
  5740.             <returns>A SQLiteType structure</returns>
  5741.         </member>
  5742.         <member name="M:System.Data.SQLite.SQLiteDataReader.Read">
  5743.             <summary>
  5744.             Reads the next row from the resultset
  5745.             </summary>
  5746.             <returns>True if a new row was successfully loaded and is ready for processing</returns>
  5747.         </member>
  5748.         <member name="P:System.Data.SQLite.SQLiteDataReader.Depth">
  5749.             <summary>
  5750.             Not implemented.  Returns 0
  5751.             </summary>
  5752.         </member>
  5753.         <member name="P:System.Data.SQLite.SQLiteDataReader.FieldCount">
  5754.             <summary>
  5755.             Returns the number of columns in the current resultset
  5756.             </summary>
  5757.         </member>
  5758.         <member name="P:System.Data.SQLite.SQLiteDataReader.StepCount">
  5759.             <summary>
  5760.             Returns the number of rows seen so far in the current result set.
  5761.             </summary>
  5762.         </member>
  5763.         <member name="P:System.Data.SQLite.SQLiteDataReader.VisibleFieldCount">
  5764.             <summary>
  5765.             Returns the number of visible fields in the current resultset
  5766.             </summary>
  5767.         </member>
  5768.         <member name="P:System.Data.SQLite.SQLiteDataReader.HasRows">
  5769.             <summary>
  5770.             Returns True if the resultset has rows that can be fetched
  5771.             </summary>
  5772.         </member>
  5773.         <member name="P:System.Data.SQLite.SQLiteDataReader.IsClosed">
  5774.             <summary>
  5775.             Returns True if the data reader is closed
  5776.             </summary>
  5777.         </member>
  5778.         <member name="P:System.Data.SQLite.SQLiteDataReader.RecordsAffected">
  5779.             <summary>
  5780.             Retrieve the count of records affected by an update/insert command.  Only valid once the data reader is closed!
  5781.             </summary>
  5782.         </member>
  5783.         <member name="P:System.Data.SQLite.SQLiteDataReader.Item(System.String)">
  5784.             <summary>
  5785.             Indexer to retrieve data from a column given its name
  5786.             </summary>
  5787.             <param name="name">The name of the column to retrieve data for</param>
  5788.             <returns>The value contained in the column</returns>
  5789.         </member>
  5790.         <member name="P:System.Data.SQLite.SQLiteDataReader.Item(System.Int32)">
  5791.             <summary>
  5792.             Indexer to retrieve data from a column given its i
  5793.             </summary>
  5794.             <param name="i">The index of the column to retrieve</param>
  5795.             <returns>The value contained in the column</returns>
  5796.         </member>
  5797.         <member name="T:System.Data.SQLite.SQLiteException">
  5798.             <summary>
  5799.             SQLite exception class.
  5800.             </summary>
  5801.         </member>
  5802.         <member name="M:System.Data.SQLite.SQLiteException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  5803.             <summary>
  5804.             Private constructor for use with serialization.
  5805.             </summary>
  5806.             <param name="info">
  5807.             Holds the serialized object data about the exception being thrown.
  5808.             </param>
  5809.             <param name="context">
  5810.             Contains contextual information about the source or destination.
  5811.             </param>
  5812.         </member>
  5813.         <member name="M:System.Data.SQLite.SQLiteException.#ctor(System.Data.SQLite.SQLiteErrorCode,System.String)">
  5814.             <summary>
  5815.             Public constructor for generating a SQLite exception given the error
  5816.             code and message.
  5817.             </summary>
  5818.             <param name="errorCode">
  5819.             The SQLite return code to report.
  5820.             </param>
  5821.             <param name="message">
  5822.             Message text to go along with the return code message text.
  5823.             </param>
  5824.         </member>
  5825.         <member name="M:System.Data.SQLite.SQLiteException.#ctor(System.String)">
  5826.             <summary>
  5827.             Public constructor that uses the base class constructor for the error
  5828.             message.
  5829.             </summary>
  5830.             <param name="message">Error message text.</param>
  5831.         </member>
  5832.         <member name="M:System.Data.SQLite.SQLiteException.#ctor">
  5833.             <summary>
  5834.             Public constructor that uses the default base class constructor.
  5835.             </summary>
  5836.         </member>
  5837.         <member name="M:System.Data.SQLite.SQLiteException.#ctor(System.String,System.Exception)">
  5838.             <summary>
  5839.             Public constructor that uses the base class constructor for the error
  5840.             message and inner exception.
  5841.             </summary>
  5842.             <param name="message">Error message text.</param>
  5843.             <param name="innerException">The original (inner) exception.</param>
  5844.         </member>
  5845.         <member name="M:System.Data.SQLite.SQLiteException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  5846.             <summary>
  5847.             Adds extra information to the serialized object data specific to this
  5848.             class type.  This is only used for serialization.
  5849.             </summary>
  5850.             <param name="info">
  5851.             Holds the serialized object data about the exception being thrown.
  5852.             </param>
  5853.             <param name="context">
  5854.             Contains contextual information about the source or destination.
  5855.             </param>
  5856.         </member>
  5857.         <member name="M:System.Data.SQLite.SQLiteException.GetErrorString(System.Data.SQLite.SQLiteErrorCode)">
  5858.             <summary>
  5859.             Returns the error message for the specified SQLite return code.
  5860.             </summary>
  5861.             <param name="errorCode">The SQLite return code.</param>
  5862.             <returns>The error message or null if it cannot be found.</returns>
  5863.         </member>
  5864.         <member name="M:System.Data.SQLite.SQLiteException.GetStockErrorMessage(System.Data.SQLite.SQLiteErrorCode,System.String)">
  5865.             <summary>
  5866.             Returns the composite error message based on the SQLite return code
  5867.             and the optional detailed error message.
  5868.             </summary>
  5869.             <param name="errorCode">The SQLite return code.</param>
  5870.             <param name="message">Optional detailed error message.</param>
  5871.             <returns>Error message text for the return code.</returns>
  5872.         </member>
  5873.         <member name="P:System.Data.SQLite.SQLiteException.ResultCode">
  5874.             <summary>
  5875.             Gets the associated SQLite result code for this exception as a
  5876.             <see cref="T:System.Data.SQLite.SQLiteErrorCode"/>.  This property returns the same
  5877.             underlying value as the <see cref="P:System.Data.SQLite.SQLiteException.ErrorCode"/> property.
  5878.             </summary>
  5879.         </member>
  5880.         <member name="P:System.Data.SQLite.SQLiteException.ErrorCode">
  5881.             <summary>
  5882.             Gets the associated SQLite return code for this exception as an
  5883.             <see cref="T:System.Int32"/>.  For desktop versions of the .NET Framework,
  5884.             this property overrides the property of the same name within the
  5885.             <see cref="T:System.Runtime.InteropServices.ExternalException"/>
  5886.             class.  This property returns the same underlying value as the
  5887.             <see cref="P:System.Data.SQLite.SQLiteException.ResultCode"/> property.
  5888.             </summary>
  5889.         </member>
  5890.         <member name="T:System.Data.SQLite.SQLiteErrorCode">
  5891.             <summary>
  5892.             SQLite error codes.  Actually, this enumeration represents a return code,
  5893.             which may also indicate success in one of several ways (e.g. SQLITE_OK,
  5894.             SQLITE_ROW, and SQLITE_DONE).  Therefore, the name of this enumeration is
  5895.             something of a misnomer.
  5896.             </summary>
  5897.         </member>
  5898.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Unknown">
  5899.             <summary>
  5900.             The error code is unknown.  This error code
  5901.             is only used by the managed wrapper itself.
  5902.             </summary>
  5903.         </member>
  5904.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Ok">
  5905.             <summary>
  5906.             Successful result
  5907.             </summary>
  5908.         </member>
  5909.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Error">
  5910.             <summary>
  5911.             SQL error or missing database
  5912.             </summary>
  5913.         </member>
  5914.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Internal">
  5915.             <summary>
  5916.             Internal logic error in SQLite
  5917.             </summary>
  5918.         </member>
  5919.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Perm">
  5920.             <summary>
  5921.             Access permission denied
  5922.             </summary>
  5923.         </member>
  5924.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Abort">
  5925.             <summary>
  5926.             Callback routine requested an abort
  5927.             </summary>
  5928.         </member>
  5929.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Busy">
  5930.             <summary>
  5931.             The database file is locked
  5932.             </summary>
  5933.         </member>
  5934.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Locked">
  5935.             <summary>
  5936.             A table in the database is locked
  5937.             </summary>
  5938.         </member>
  5939.         <member name="F:System.Data.SQLite.SQLiteErrorCode.NoMem">
  5940.             <summary>
  5941.             A malloc() failed
  5942.             </summary>
  5943.         </member>
  5944.         <member name="F:System.Data.SQLite.SQLiteErrorCode.ReadOnly">
  5945.             <summary>
  5946.             Attempt to write a readonly database
  5947.             </summary>
  5948.         </member>
  5949.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Interrupt">
  5950.             <summary>
  5951.             Operation terminated by sqlite3_interrupt()
  5952.             </summary>
  5953.         </member>
  5954.         <member name="F:System.Data.SQLite.SQLiteErrorCode.IoErr">
  5955.             <summary>
  5956.             Some kind of disk I/O error occurred
  5957.             </summary>
  5958.         </member>
  5959.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Corrupt">
  5960.             <summary>
  5961.             The database disk image is malformed
  5962.             </summary>
  5963.         </member>
  5964.         <member name="F:System.Data.SQLite.SQLiteErrorCode.NotFound">
  5965.             <summary>
  5966.             Unknown opcode in sqlite3_file_control()
  5967.             </summary>
  5968.         </member>
  5969.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Full">
  5970.             <summary>
  5971.             Insertion failed because database is full
  5972.             </summary>
  5973.         </member>
  5974.         <member name="F:System.Data.SQLite.SQLiteErrorCode.CantOpen">
  5975.             <summary>
  5976.             Unable to open the database file
  5977.             </summary>
  5978.         </member>
  5979.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Protocol">
  5980.             <summary>
  5981.             Database lock protocol error
  5982.             </summary>
  5983.         </member>
  5984.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Empty">
  5985.             <summary>
  5986.             Database is empty
  5987.             </summary>
  5988.         </member>
  5989.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Schema">
  5990.             <summary>
  5991.             The database schema changed
  5992.             </summary>
  5993.         </member>
  5994.         <member name="F:System.Data.SQLite.SQLiteErrorCode.TooBig">
  5995.             <summary>
  5996.             String or BLOB exceeds size limit
  5997.             </summary>
  5998.         </member>
  5999.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Constraint">
  6000.             <summary>
  6001.             Abort due to constraint violation
  6002.             </summary>
  6003.         </member>
  6004.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Mismatch">
  6005.             <summary>
  6006.             Data type mismatch
  6007.             </summary>
  6008.         </member>
  6009.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Misuse">
  6010.             <summary>
  6011.             Library used incorrectly
  6012.             </summary>
  6013.         </member>
  6014.         <member name="F:System.Data.SQLite.SQLiteErrorCode.NoLfs">
  6015.             <summary>
  6016.             Uses OS features not supported on host
  6017.             </summary>
  6018.         </member>
  6019.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Auth">
  6020.             <summary>
  6021.             Authorization denied
  6022.             </summary>
  6023.         </member>
  6024.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Format">
  6025.             <summary>
  6026.             Auxiliary database format error
  6027.             </summary>
  6028.         </member>
  6029.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Range">
  6030.             <summary>
  6031.             2nd parameter to sqlite3_bind out of range
  6032.             </summary>
  6033.         </member>
  6034.         <member name="F:System.Data.SQLite.SQLiteErrorCode.NotADb">
  6035.             <summary>
  6036.             File opened that is not a database file
  6037.             </summary>
  6038.         </member>
  6039.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Notice">
  6040.             <summary>
  6041.             Notifications from sqlite3_log()
  6042.             </summary>
  6043.         </member>
  6044.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Warning">
  6045.             <summary>
  6046.             Warnings from sqlite3_log()
  6047.             </summary>
  6048.         </member>
  6049.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Row">
  6050.             <summary>
  6051.             sqlite3_step() has another row ready
  6052.             </summary>
  6053.         </member>
  6054.         <member name="F:System.Data.SQLite.SQLiteErrorCode.Done">
  6055.             <summary>
  6056.             sqlite3_step() has finished executing
  6057.             </summary>
  6058.         </member>
  6059.         <member name="F:System.Data.SQLite.SQLiteErrorCode.NonExtendedMask">
  6060.             <summary>
  6061.             Used to mask off extended result codes
  6062.             </summary>
  6063.         </member>
  6064.         <member name="T:System.Data.SQLite.SQLiteFactory">
  6065.             <summary>
  6066.             SQLite implementation of <see cref="T:System.Data.Common.DbProviderFactory"/>.
  6067.             </summary>
  6068.             <summary>
  6069.             SQLite implementation of <see cref="T:System.IServiceProvider"/>.
  6070.             </summary>
  6071.         </member>
  6072.         <member name="M:System.Data.SQLite.SQLiteFactory.#ctor">
  6073.             <summary>
  6074.             Constructs a new instance.
  6075.             </summary>
  6076.         </member>
  6077.         <member name="F:System.Data.SQLite.SQLiteFactory.Instance">
  6078.             <summary>
  6079.             Static instance member which returns an instanced <see cref="T:System.Data.SQLite.SQLiteFactory"/> class.
  6080.             </summary>
  6081.         </member>
  6082.         <member name="M:System.Data.SQLite.SQLiteFactory.CreateCommand">
  6083.             <summary>
  6084.             Creates and returns a new <see cref="T:System.Data.SQLite.SQLiteCommand"/> object.
  6085.             </summary>
  6086.             <returns>The new object.</returns>
  6087.         </member>
  6088.         <member name="M:System.Data.SQLite.SQLiteFactory.CreateCommandBuilder">
  6089.             <summary>
  6090.             Creates and returns a new <see cref="T:System.Data.SQLite.SQLiteCommandBuilder"/> object.
  6091.             </summary>
  6092.             <returns>The new object.</returns>
  6093.         </member>
  6094.         <member name="M:System.Data.SQLite.SQLiteFactory.CreateConnection">
  6095.             <summary>
  6096.             Creates and returns a new <see cref="T:System.Data.SQLite.SQLiteConnection"/> object.
  6097.             </summary>
  6098.             <returns>The new object.</returns>
  6099.         </member>
  6100.         <member name="M:System.Data.SQLite.SQLiteFactory.CreateConnectionStringBuilder">
  6101.             <summary>
  6102.             Creates and returns a new <see cref="T:System.Data.SQLite.SQLiteConnectionStringBuilder"/> object.
  6103.             </summary>
  6104.             <returns>The new object.</returns>
  6105.         </member>
  6106.         <member name="M:System.Data.SQLite.SQLiteFactory.CreateDataAdapter">
  6107.             <summary>
  6108.             Creates and returns a new <see cref="T:System.Data.SQLite.SQLiteDataAdapter"/> object.
  6109.             </summary>
  6110.             <returns>The new object.</returns>
  6111.         </member>
  6112.         <member name="M:System.Data.SQLite.SQLiteFactory.CreateParameter">
  6113.             <summary>
  6114.             Creates and returns a new <see cref="T:System.Data.SQLite.SQLiteParameter"/> object.
  6115.             </summary>
  6116.             <returns>The new object.</returns>
  6117.         </member>
  6118.         <member name="M:System.Data.SQLite.SQLiteFactory.System#IServiceProvider#GetService(System.Type)">
  6119.             <summary>
  6120.             Will provide a <see cref="T:System.IServiceProvider"/> object in .NET 3.5.
  6121.             </summary>
  6122.             <param name="serviceType">The class or interface type to query for.</param>
  6123.             <returns></returns>
  6124.         </member>
  6125.         <member name="E:System.Data.SQLite.SQLiteFactory.Log">
  6126.             <summary>
  6127.             This event is raised whenever SQLite raises a logging event.
  6128.             Note that this should be set as one of the first things in the
  6129.             application.  This event is provided for backward compatibility only.
  6130.             New code should use the <see cref="T:System.Data.SQLite.SQLiteLog"/> class instead.
  6131.             </summary>
  6132.         </member>
  6133.         <member name="T:System.Data.SQLite.SQLiteFunction">
  6134.              <summary>
  6135.              This abstract class is designed to handle user-defined functions easily.  An instance of the derived class is made for each
  6136.              connection to the database.
  6137.              </summary>
  6138.              <remarks>
  6139.              Although there is one instance of a class derived from SQLiteFunction per database connection, the derived class has no access
  6140.              to the underlying connection.  This is necessary to deter implementers from thinking it would be a good idea to make database
  6141.              calls during processing.
  6142.             
  6143.              It is important to distinguish between a per-connection instance, and a per-SQL statement context.  One instance of this class
  6144.              services all SQL statements being stepped through on that connection, and there can be many.  One should never store per-statement
  6145.              information in member variables of user-defined function classes.
  6146.             
  6147.              For aggregate functions, always create and store your per-statement data in the contextData object on the 1st step.  This data will
  6148.              be automatically freed for you (and Dispose() called if the item supports IDisposable) when the statement completes.
  6149.              </remarks>
  6150.         </member>
  6151.         <member name="F:System.Data.SQLite.SQLiteFunction._base">
  6152.             <summary>
  6153.             The base connection this function is attached to
  6154.             </summary>
  6155.         </member>
  6156.         <member name="F:System.Data.SQLite.SQLiteFunction._contextDataList">
  6157.             <summary>
  6158.             Internal array used to keep track of aggregate function context data
  6159.             </summary>
  6160.         </member>
  6161.         <member name="F:System.Data.SQLite.SQLiteFunction._flags">
  6162.             <summary>
  6163.             The connection flags associated with this object (this should be the
  6164.             same value as the flags associated with the parent connection object).
  6165.             </summary>
  6166.         </member>
  6167.         <member name="F:System.Data.SQLite.SQLiteFunction._InvokeFunc">
  6168.             <summary>
  6169.             Holds a reference to the callback function for user functions
  6170.             </summary>
  6171.         </member>
  6172.         <member name="F:System.Data.SQLite.SQLiteFunction._StepFunc">
  6173.             <summary>
  6174.             Holds a reference to the callbakc function for stepping in an aggregate function
  6175.             </summary>
  6176.         </member>
  6177.         <member name="F:System.Data.SQLite.SQLiteFunction._FinalFunc">
  6178.             <summary>
  6179.             Holds a reference to the callback function for finalizing an aggregate function
  6180.             </summary>
  6181.         </member>
  6182.         <member name="F:System.Data.SQLite.SQLiteFunction._CompareFunc">
  6183.             <summary>
  6184.             Holds a reference to the callback function for collation sequences
  6185.             </summary>
  6186.         </member>
  6187.         <member name="F:System.Data.SQLite.SQLiteFunction._context">
  6188.             <summary>
  6189.             Current context of the current callback.  Only valid during a callback
  6190.             </summary>
  6191.         </member>
  6192.         <member name="F:System.Data.SQLite.SQLiteFunction._registeredFunctions">
  6193.             <summary>
  6194.             This static list contains all the user-defined functions declared using the proper attributes.
  6195.             </summary>
  6196.         </member>
  6197.         <member name="M:System.Data.SQLite.SQLiteFunction.#ctor">
  6198.             <summary>
  6199.             Internal constructor, initializes the function's internal variables.
  6200.             </summary>
  6201.         </member>
  6202.         <member name="M:System.Data.SQLite.SQLiteFunction.#ctor(System.Data.SQLite.SQLiteDateFormats,System.DateTimeKind,System.String,System.Boolean)">
  6203.             <summary>
  6204.             Constructs an instance of this class using the specified data-type
  6205.             conversion parameters.
  6206.             </summary>
  6207.             <param name="format">
  6208.             The DateTime format to be used when converting string values to a
  6209.             DateTime and binding DateTime parameters.
  6210.             </param>
  6211.             <param name="kind">
  6212.             The <see cref="T:System.DateTimeKind"/> to be used when creating DateTime
  6213.             values.
  6214.             </param>
  6215.             <param name="formatString">
  6216.             The format string to be used when parsing and formatting DateTime
  6217.             values.
  6218.             </param>
  6219.             <param name="utf16">
  6220.             Non-zero to create a UTF-16 data-type conversion context; otherwise,
  6221.             a UTF-8 data-type conversion context will be created.
  6222.             </param>
  6223.         </member>
  6224.         <member name="M:System.Data.SQLite.SQLiteFunction.Dispose">
  6225.             <summary>
  6226.             Disposes of any active contextData variables that were not automatically cleaned up.  Sometimes this can happen if
  6227.             someone closes the connection while a DataReader is open.
  6228.             </summary>
  6229.         </member>
  6230.         <member name="M:System.Data.SQLite.SQLiteFunction.Dispose(System.Boolean)">
  6231.             <summary>
  6232.             Placeholder for a user-defined disposal routine
  6233.             </summary>
  6234.             <param name="disposing">True if the object is being disposed explicitly</param>
  6235.         </member>
  6236.         <member name="M:System.Data.SQLite.SQLiteFunction.Invoke(System.Object[])">
  6237.             <summary>
  6238.             Scalar functions override this method to do their magic.
  6239.             </summary>
  6240.             <remarks>
  6241.             Parameters passed to functions have only an affinity for a certain data type, there is no underlying schema available
  6242.             to force them into a certain type.  Therefore the only types you will ever see as parameters are
  6243.             DBNull.Value, Int64, Double, String or byte[] array.
  6244.             </remarks>
  6245.             <param name="args">The arguments for the command to process</param>
  6246.             <returns>You may return most simple types as a return value, null or DBNull.Value to return null, DateTime, or
  6247.             you may return an Exception-derived class if you wish to return an error to SQLite.  Do not actually throw the error,
  6248.             just return it!</returns>
  6249.         </member>
  6250.         <member name="M:System.Data.SQLite.SQLiteFunction.Step(System.Object[],System.Int32,System.Object@)">
  6251.             <summary>
  6252.             Aggregate functions override this method to do their magic.
  6253.             </summary>
  6254.             <remarks>
  6255.             Typically you'll be updating whatever you've placed in the contextData field and returning as quickly as possible.
  6256.             </remarks>
  6257.             <param name="args">The arguments for the command to process</param>
  6258.             <param name="stepNumber">The 1-based step number.  This is incrememted each time the step method is called.</param>
  6259.             <param name="contextData">A placeholder for implementers to store contextual data pertaining to the current context.</param>
  6260.         </member>
  6261.         <member name="M:System.Data.SQLite.SQLiteFunction.Final(System.Object)">
  6262.             <summary>
  6263.             Aggregate functions override this method to finish their aggregate processing.
  6264.             </summary>
  6265.             <remarks>
  6266.             If you implemented your aggregate function properly,
  6267.             you've been recording and keeping track of your data in the contextData object provided, and now at this stage you should have
  6268.             all the information you need in there to figure out what to return.
  6269.             NOTE:  It is possible to arrive here without receiving a previous call to Step(), in which case the contextData will
  6270.             be null.  This can happen when no rows were returned.  You can either return null, or 0 or some other custom return value
  6271.             if that is the case.
  6272.             </remarks>
  6273.             <param name="contextData">Your own assigned contextData, provided for you so you can return your final results.</param>
  6274.             <returns>You may return most simple types as a return value, null or DBNull.Value to return null, DateTime, or
  6275.             you may return an Exception-derived class if you wish to return an error to SQLite.  Do not actually throw the error,
  6276.             just return it!
  6277.             </returns>
  6278.         </member>
  6279.         <member name="M:System.Data.SQLite.SQLiteFunction.Compare(System.String,System.String)">
  6280.             <summary>
  6281.             User-defined collation sequences override this method to provide a custom string sorting algorithm.
  6282.             </summary>
  6283.             <param name="param1">The first string to compare</param>
  6284.             <param name="param2">The second strnig to compare</param>
  6285.             <returns>1 if param1 is greater than param2, 0 if they are equal, or -1 if param1 is less than param2</returns>
  6286.         </member>
  6287.         <member name="M:System.Data.SQLite.SQLiteFunction.ConvertParams(System.Int32,System.IntPtr)">
  6288.             <summary>
  6289.             Converts an IntPtr array of context arguments to an object array containing the resolved parameters the pointers point to.
  6290.             </summary>
  6291.             <remarks>
  6292.             Parameters passed to functions have only an affinity for a certain data type, there is no underlying schema available
  6293.             to force them into a certain type.  Therefore the only types you will ever see as parameters are
  6294.             DBNull.Value, Int64, Double, String or byte[] array.
  6295.             </remarks>
  6296.             <param name="nArgs">The number of arguments</param>
  6297.             <param name="argsptr">A pointer to the array of arguments</param>
  6298.             <returns>An object array of the arguments once they've been converted to .NET values</returns>
  6299.         </member>
  6300.         <member name="M:System.Data.SQLite.SQLiteFunction.SetReturnValue(System.IntPtr,System.Object)">
  6301.             <summary>
  6302.             Takes the return value from Invoke() and Final() and figures out how to return it to SQLite's context.
  6303.             </summary>
  6304.             <param name="context">The context the return value applies to</param>
  6305.             <param name="returnValue">The parameter to return to SQLite</param>
  6306.         </member>
  6307.         <member name="M:System.Data.SQLite.SQLiteFunction.ScalarCallback(System.IntPtr,System.Int32,System.IntPtr)">
  6308.             <summary>
  6309.             Internal scalar callback function, which wraps the raw context pointer and calls the virtual Invoke() method.
  6310.             WARNING: Must not throw exceptions.
  6311.             </summary>
  6312.             <param name="context">A raw context pointer</param>
  6313.             <param name="nArgs">Number of arguments passed in</param>
  6314.             <param name="argsptr">A pointer to the array of arguments</param>
  6315.         </member>
  6316.         <member name="M:System.Data.SQLite.SQLiteFunction.CompareCallback(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)">
  6317.             <summary>
  6318.             Internal collation sequence function, which wraps up the raw string pointers and executes the Compare() virtual function.
  6319.             WARNING: Must not throw exceptions.
  6320.             </summary>
  6321.             <param name="ptr">Not used</param>
  6322.             <param name="len1">Length of the string pv1</param>
  6323.             <param name="ptr1">Pointer to the first string to compare</param>
  6324.             <param name="len2">Length of the string pv2</param>
  6325.             <param name="ptr2">Pointer to the second string to compare</param>
  6326.             <returns>Returns -1 if the first string is less than the second.  0 if they are equal, or 1 if the first string is greater
  6327.             than the second.  Returns 0 if an exception is caught.</returns>
  6328.         </member>
  6329.         <member name="M:System.Data.SQLite.SQLiteFunction.CompareCallback16(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)">
  6330.             <summary>
  6331.             Internal collation sequence function, which wraps up the raw string pointers and executes the Compare() virtual function.
  6332.             WARNING: Must not throw exceptions.
  6333.             </summary>
  6334.             <param name="ptr">Not used</param>
  6335.             <param name="len1">Length of the string pv1</param>
  6336.             <param name="ptr1">Pointer to the first string to compare</param>
  6337.             <param name="len2">Length of the string pv2</param>
  6338.             <param name="ptr2">Pointer to the second string to compare</param>
  6339.             <returns>Returns -1 if the first string is less than the second.  0 if they are equal, or 1 if the first string is greater
  6340.             than the second.  Returns 0 if an exception is caught.</returns>
  6341.         </member>
  6342.         <member name="M:System.Data.SQLite.SQLiteFunction.StepCallback(System.IntPtr,System.Int32,System.IntPtr)">
  6343.             <summary>
  6344.             The internal aggregate Step function callback, which wraps the raw context pointer and calls the virtual Step() method.
  6345.             WARNING: Must not throw exceptions.
  6346.             </summary>
  6347.             <remarks>
  6348.             This function takes care of doing the lookups and getting the important information put together to call the Step() function.
  6349.             That includes pulling out the user's contextData and updating it after the call is made.  We use a sorted list for this so
  6350.             binary searches can be done to find the data.
  6351.             </remarks>
  6352.             <param name="context">A raw context pointer</param>
  6353.             <param name="nArgs">Number of arguments passed in</param>
  6354.             <param name="argsptr">A pointer to the array of arguments</param>
  6355.         </member>
  6356.         <member name="M:System.Data.SQLite.SQLiteFunction.FinalCallback(System.IntPtr)">
  6357.             <summary>
  6358.             An internal aggregate Final function callback, which wraps the context pointer and calls the virtual Final() method.
  6359.             WARNING: Must not throw exceptions.
  6360.             </summary>
  6361.             <param name="context">A raw context pointer</param>
  6362.         </member>
  6363.         <member name="M:System.Data.SQLite.SQLiteFunction.#cctor">
  6364.             <summary>
  6365.             Using reflection, enumerate all assemblies in the current appdomain looking for classes that
  6366.             have a SQLiteFunctionAttribute attribute, and registering them accordingly.
  6367.             </summary>
  6368.         </member>
  6369.         <member name="M:System.Data.SQLite.SQLiteFunction.RegisterFunction(System.Type)">
  6370.             <summary>
  6371.             Manual method of registering a function.  The type must still have the SQLiteFunctionAttributes in order to work
  6372.             properly, but this is a workaround for the Compact Framework where enumerating assemblies is not currently supported.
  6373.             </summary>
  6374.             <param name="typ">The type of the function to register</param>
  6375.         </member>
  6376.         <member name="M:System.Data.SQLite.SQLiteFunction.BindFunctions(System.Data.SQLite.SQLiteBase,System.Data.SQLite.SQLiteConnectionFlags)">
  6377.             <summary>
  6378.             Called by SQLiteBase derived classes, this function binds all user-defined functions to a connection.
  6379.             It is done this way so that all user-defined functions will access the database using the same encoding scheme
  6380.             as the connection (UTF-8 or UTF-16).
  6381.             </summary>
  6382.             <remarks>
  6383.             The wrapper functions that interop with SQLite will create a unique cookie value, which internally is a pointer to
  6384.             all the wrapped callback functions.  The interop function uses it to map CDecl callbacks to StdCall callbacks.
  6385.             </remarks>
  6386.             <param name="sqlbase">The base object on which the functions are to bind</param>
  6387.             <param name="flags">The flags associated with the parent connection object</param>
  6388.             <returns>Returns a logical list of functions which the connection should retain until it is closed.</returns>
  6389.         </member>
  6390.         <member name="M:System.Data.SQLite.SQLiteFunction.BindFunction(System.Data.SQLite.SQLiteBase,System.Data.SQLite.SQLiteFunctionAttribute,System.Data.SQLite.SQLiteFunction,System.Data.SQLite.SQLiteConnectionFlags)">
  6391.             <summary>
  6392.             This function binds a user-defined functions to a connection.
  6393.             </summary>
  6394.             <param name="sqliteBase">
  6395.             The <see cref="T:System.Data.SQLite.SQLiteBase"/> object instance associated with the
  6396.             <see cref="T:System.Data.SQLite.SQLiteConnection"/> that the function should be bound to.
  6397.             </param>
  6398.             <param name="functionAttribute">
  6399.             The <see cref="T:System.Data.SQLite.SQLiteFunctionAttribute"/> object instance containing
  6400.             the metadata for the function to be bound.
  6401.             </param>
  6402.             <param name="function">
  6403.             The <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance that implements the
  6404.             function to be bound.
  6405.             </param>
  6406.             <param name="flags">
  6407.             The flags associated with the parent connection object.
  6408.             </param>
  6409.         </member>
  6410.         <member name="P:System.Data.SQLite.SQLiteFunction.SQLiteConvert">
  6411.             <summary>
  6412.             Returns a reference to the underlying connection's SQLiteConvert class, which can be used to convert
  6413.             strings and DateTime's into the current connection's encoding schema.
  6414.             </summary>
  6415.         </member>
  6416.         <member name="T:System.Data.SQLite.SQLiteFunctionEx">
  6417.             <summary>
  6418.             Extends SQLiteFunction and allows an inherited class to obtain the collating sequence associated with a function call.
  6419.             </summary>
  6420.             <remarks>
  6421.             User-defined functions can call the GetCollationSequence() method in this class and use it to compare strings and char arrays.
  6422.             </remarks>
  6423.         </member>
  6424.         <member name="M:System.Data.SQLite.SQLiteFunctionEx.GetCollationSequence">
  6425.             <summary>
  6426.             Obtains the collating sequence in effect for the given function.
  6427.             </summary>
  6428.             <returns></returns>
  6429.         </member>
  6430.         <member name="T:System.Data.SQLite.FunctionType">
  6431.             <summary>
  6432.             The type of user-defined function to declare
  6433.             </summary>
  6434.         </member>
  6435.         <member name="F:System.Data.SQLite.FunctionType.Scalar">
  6436.             <summary>
  6437.             Scalar functions are designed to be called and return a result immediately.  Examples include ABS(), Upper(), Lower(), etc.
  6438.             </summary>
  6439.         </member>
  6440.         <member name="F:System.Data.SQLite.FunctionType.Aggregate">
  6441.             <summary>
  6442.             Aggregate functions are designed to accumulate data until the end of a call and then return a result gleaned from the accumulated data.
  6443.             Examples include SUM(), COUNT(), AVG(), etc.
  6444.             </summary>
  6445.         </member>
  6446.         <member name="F:System.Data.SQLite.FunctionType.Collation">
  6447.             <summary>
  6448.             Collation sequences are used to sort textual data in a custom manner, and appear in an ORDER BY clause.  Typically text in an ORDER BY is
  6449.             sorted using a straight case-insensitive comparison function.  Custom collating sequences can be used to alter the behavior of text sorting
  6450.             in a user-defined manner.
  6451.             </summary>
  6452.         </member>
  6453.         <member name="T:System.Data.SQLite.SQLiteCallback">
  6454.             <summary>
  6455.             An internal callback delegate declaration.
  6456.             </summary>
  6457.             <param name="context">Raw native context pointer for the user function.</param>
  6458.             <param name="argc">Total number of arguments to the user function.</param>
  6459.             <param name="argv">Raw native pointer to the array of raw native argument pointers.</param>
  6460.         </member>
  6461.         <member name="T:System.Data.SQLite.SQLiteFinalCallback">
  6462.             <summary>
  6463.             An internal final callback delegate declaration.
  6464.             </summary>
  6465.             <param name="context">Raw context pointer for the user function</param>
  6466.         </member>
  6467.         <member name="T:System.Data.SQLite.SQLiteCollation">
  6468.             <summary>
  6469.             Internal callback delegate for implementing collation sequences
  6470.             </summary>
  6471.             <param name="puser">Not used</param>
  6472.             <param name="len1">Length of the string pv1</param>
  6473.             <param name="pv1">Pointer to the first string to compare</param>
  6474.             <param name="len2">Length of the string pv2</param>
  6475.             <param name="pv2">Pointer to the second string to compare</param>
  6476.             <returns>Returns -1 if the first string is less than the second.  0 if they are equal, or 1 if the first string is greater
  6477.             than the second.</returns>
  6478.         </member>
  6479.         <member name="T:System.Data.SQLite.CollationTypeEnum">
  6480.             <summary>
  6481.             The type of collating sequence
  6482.             </summary>
  6483.         </member>
  6484.         <member name="F:System.Data.SQLite.CollationTypeEnum.Binary">
  6485.             <summary>
  6486.             The built-in BINARY collating sequence
  6487.             </summary>
  6488.         </member>
  6489.         <member name="F:System.Data.SQLite.CollationTypeEnum.NoCase">
  6490.             <summary>
  6491.             The built-in NOCASE collating sequence
  6492.             </summary>
  6493.         </member>
  6494.         <member name="F:System.Data.SQLite.CollationTypeEnum.Reverse">
  6495.             <summary>
  6496.             The built-in REVERSE collating sequence
  6497.             </summary>
  6498.         </member>
  6499.         <member name="F:System.Data.SQLite.CollationTypeEnum.Custom">
  6500.             <summary>
  6501.             A custom user-defined collating sequence
  6502.             </summary>
  6503.         </member>
  6504.         <member name="T:System.Data.SQLite.CollationEncodingEnum">
  6505.             <summary>
  6506.             The encoding type the collation sequence uses
  6507.             </summary>
  6508.         </member>
  6509.         <member name="F:System.Data.SQLite.CollationEncodingEnum.UTF8">
  6510.             <summary>
  6511.             The collation sequence is UTF8
  6512.             </summary>
  6513.         </member>
  6514.         <member name="F:System.Data.SQLite.CollationEncodingEnum.UTF16LE">
  6515.             <summary>
  6516.             The collation sequence is UTF16 little-endian
  6517.             </summary>
  6518.         </member>
  6519.         <member name="F:System.Data.SQLite.CollationEncodingEnum.UTF16BE">
  6520.             <summary>
  6521.             The collation sequence is UTF16 big-endian
  6522.             </summary>
  6523.         </member>
  6524.         <member name="T:System.Data.SQLite.CollationSequence">
  6525.             <summary>
  6526.             A struct describing the collating sequence a function is executing in
  6527.             </summary>
  6528.         </member>
  6529.         <member name="F:System.Data.SQLite.CollationSequence.Name">
  6530.             <summary>
  6531.             The name of the collating sequence
  6532.             </summary>
  6533.         </member>
  6534.         <member name="F:System.Data.SQLite.CollationSequence.Type">
  6535.             <summary>
  6536.             The type of collating sequence
  6537.             </summary>
  6538.         </member>
  6539.         <member name="F:System.Data.SQLite.CollationSequence.Encoding">
  6540.             <summary>
  6541.             The text encoding of the collation sequence
  6542.             </summary>
  6543.         </member>
  6544.         <member name="F:System.Data.SQLite.CollationSequence._func">
  6545.             <summary>
  6546.             Context of the function that requested the collating sequence
  6547.             </summary>
  6548.         </member>
  6549.         <member name="M:System.Data.SQLite.CollationSequence.Compare(System.String,System.String)">
  6550.             <summary>
  6551.             Calls the base collating sequence to compare two strings
  6552.             </summary>
  6553.             <param name="s1">The first string to compare</param>
  6554.             <param name="s2">The second string to compare</param>
  6555.             <returns>-1 if s1 is less than s2, 0 if s1 is equal to s2, and 1 if s1 is greater than s2</returns>
  6556.         </member>
  6557.         <member name="M:System.Data.SQLite.CollationSequence.Compare(System.Char[],System.Char[])">
  6558.             <summary>
  6559.             Calls the base collating sequence to compare two character arrays
  6560.             </summary>
  6561.             <param name="c1">The first array to compare</param>
  6562.             <param name="c2">The second array to compare</param>
  6563.             <returns>-1 if c1 is less than c2, 0 if c1 is equal to c2, and 1 if c1 is greater than c2</returns>
  6564.         </member>
  6565.         <member name="T:System.Data.SQLite.SQLiteFunctionAttribute">
  6566.             <summary>
  6567.             A simple custom attribute to enable us to easily find user-defined functions in
  6568.             the loaded assemblies and initialize them in SQLite as connections are made.
  6569.             </summary>
  6570.         </member>
  6571.         <member name="M:System.Data.SQLite.SQLiteFunctionAttribute.#ctor">
  6572.             <summary>
  6573.             Default constructor, initializes the internal variables for the function.
  6574.             </summary>
  6575.         </member>
  6576.         <member name="M:System.Data.SQLite.SQLiteFunctionAttribute.#ctor(System.String,System.Int32,System.Data.SQLite.FunctionType)">
  6577.             <summary>
  6578.             Constructs an instance of this class.
  6579.             </summary>
  6580.             <param name="name">
  6581.             The name of the function, as seen by the SQLite core library.
  6582.             </param>
  6583.             <param name="argumentCount">
  6584.             The number of arguments that the function will accept.
  6585.             </param>
  6586.             <param name="functionType">
  6587.             The type of function being declared.  This will either be Scalar,
  6588.             Aggregate, or Collation.
  6589.             </param>
  6590.         </member>
  6591.         <member name="P:System.Data.SQLite.SQLiteFunctionAttribute.Name">
  6592.             <summary>
  6593.             The function's name as it will be used in SQLite command text.
  6594.             </summary>
  6595.         </member>
  6596.         <member name="P:System.Data.SQLite.SQLiteFunctionAttribute.Arguments">
  6597.             <summary>
  6598.             The number of arguments this function expects.  -1 if the number of arguments is variable.
  6599.             </summary>
  6600.         </member>
  6601.         <member name="P:System.Data.SQLite.SQLiteFunctionAttribute.FuncType">
  6602.             <summary>
  6603.             The type of function this implementation will be.
  6604.             </summary>
  6605.         </member>
  6606.         <member name="P:System.Data.SQLite.SQLiteFunctionAttribute.InstanceType">
  6607.             <summary>
  6608.             The <see cref="T:System.Type"/> object instance that describes the class
  6609.             containing the implementation for the associated function.
  6610.             </summary>
  6611.         </member>
  6612.         <member name="T:System.Data.SQLite.SQLiteKeyReader">
  6613.             <summary>
  6614.             This class provides key info for a given SQLite statement.
  6615.             <remarks>
  6616.             Providing key information for a given statement is non-trivial :(
  6617.             </remarks>
  6618.             </summary>
  6619.         </member>
  6620.         <member name="M:System.Data.SQLite.SQLiteKeyReader.#ctor(System.Data.SQLite.SQLiteConnection,System.Data.SQLite.SQLiteDataReader,System.Data.SQLite.SQLiteStatement)">
  6621.             <summary>
  6622.             This function does all the nasty work at determining what keys need to be returned for
  6623.             a given statement.
  6624.             </summary>
  6625.             <param name="cnn"></param>
  6626.             <param name="reader"></param>
  6627.             <param name="stmt"></param>
  6628.         </member>
  6629.         <member name="M:System.Data.SQLite.SQLiteKeyReader.Sync">
  6630.             <summary>
  6631.             Make sure all the subqueries are open and ready and sync'd with the current rowid
  6632.             of the table they're supporting
  6633.             </summary>
  6634.         </member>
  6635.         <member name="M:System.Data.SQLite.SQLiteKeyReader.Reset">
  6636.             <summary>
  6637.             Release any readers on any subqueries
  6638.             </summary>
  6639.         </member>
  6640.         <member name="M:System.Data.SQLite.SQLiteKeyReader.AppendSchemaTable(System.Data.DataTable)">
  6641.             <summary>
  6642.             Append all the columns we've added to the original query to the schema
  6643.             </summary>
  6644.             <param name="tbl"></param>
  6645.         </member>
  6646.         <member name="P:System.Data.SQLite.SQLiteKeyReader.Count">
  6647.             <summary>
  6648.             How many additional columns of keyinfo we're holding
  6649.             </summary>
  6650.         </member>
  6651.         <member name="T:System.Data.SQLite.SQLiteKeyReader.KeyInfo">
  6652.             <summary>
  6653.             Used to support CommandBehavior.KeyInfo
  6654.             </summary>
  6655.         </member>
  6656.         <member name="T:System.Data.SQLite.SQLiteKeyReader.KeyQuery">
  6657.             <summary>
  6658.             A single sub-query for a given table/database.
  6659.             </summary>
  6660.         </member>
  6661.         <member name="T:System.Data.SQLite.LogEventArgs">
  6662.             <summary>
  6663.             Event data for logging event handlers.
  6664.             </summary>
  6665.         </member>
  6666.         <member name="F:System.Data.SQLite.LogEventArgs.ErrorCode">
  6667.             <summary>
  6668.             The error code.  The type of this object value should be
  6669.             <see cref="T:System.Int32"/> or <see cref="T:System.Data.SQLite.SQLiteErrorCode"/>.
  6670.             </summary>
  6671.         </member>
  6672.         <member name="F:System.Data.SQLite.LogEventArgs.Message">
  6673.             <summary>
  6674.             SQL statement text as the statement first begins executing
  6675.             </summary>
  6676.         </member>
  6677.         <member name="F:System.Data.SQLite.LogEventArgs.Data">
  6678.             <summary>
  6679.             Extra data associated with this event, if any.
  6680.             </summary>
  6681.         </member>
  6682.         <member name="M:System.Data.SQLite.LogEventArgs.#ctor(System.IntPtr,System.Object,System.String,System.Object)">
  6683.             <summary>
  6684.             Constructs the object.
  6685.             </summary>
  6686.             <param name="pUserData">Should be null.</param>
  6687.             <param name="errorCode">
  6688.             The error code.  The type of this object value should be
  6689.             <see cref="T:System.Int32"/> or <see cref="T:System.Data.SQLite.SQLiteErrorCode"/>.
  6690.             </param>
  6691.             <param name="message">The error message, if any.</param>
  6692.             <param name="data">The extra data, if any.</param>
  6693.         </member>
  6694.         <member name="T:System.Data.SQLite.SQLiteLogEventHandler">
  6695.             <summary>
  6696.             Raised when a log event occurs.
  6697.             </summary>
  6698.             <param name="sender">The current connection</param>
  6699.             <param name="e">Event arguments of the trace</param>
  6700.         </member>
  6701.         <member name="T:System.Data.SQLite.SQLiteLog">
  6702.             <summary>
  6703.             Manages the SQLite custom logging functionality and the associated
  6704.             callback for the whole process.
  6705.             </summary>
  6706.         </member>
  6707.         <member name="F:System.Data.SQLite.SQLiteLog.syncRoot">
  6708.             <summary>
  6709.             Object used to synchronize access to the static instance data
  6710.             for this class.
  6711.             </summary>
  6712.         </member>
  6713.         <member name="F:System.Data.SQLite.SQLiteLog._domainUnload">
  6714.             <summary>
  6715.             Member variable to store the AppDomain.DomainUnload event handler.
  6716.             </summary>
  6717.         </member>
  6718.         <member name="F:System.Data.SQLite.SQLiteLog._defaultHandler">
  6719.             <summary>
  6720.             The default log event handler.
  6721.             </summary>
  6722.         </member>
  6723.         <member name="F:System.Data.SQLite.SQLiteLog._callback">
  6724.             <summary>
  6725.             The log callback passed to native SQLite engine.  This must live
  6726.             as long as the SQLite library has a pointer to it.
  6727.             </summary>
  6728.         </member>
  6729.         <member name="F:System.Data.SQLite.SQLiteLog._sql">
  6730.             <summary>
  6731.             The base SQLite object to interop with.
  6732.             </summary>
  6733.         </member>
  6734.         <member name="F:System.Data.SQLite.SQLiteLog._enabled">
  6735.             <summary>
  6736.             This will be non-zero if logging is currently enabled.
  6737.             </summary>
  6738.         </member>
  6739.         <member name="M:System.Data.SQLite.SQLiteLog.Initialize">
  6740.             <summary>
  6741.             Initializes the SQLite logging facilities.
  6742.             </summary>
  6743.         </member>
  6744.         <member name="M:System.Data.SQLite.SQLiteLog.DomainUnload(System.Object,System.EventArgs)">
  6745.             <summary>
  6746.             Handles the AppDomain being unloaded.
  6747.             </summary>
  6748.             <param name="sender">Should be null.</param>
  6749.             <param name="e">The data associated with this event.</param>
  6750.         </member>
  6751.         <member name="M:System.Data.SQLite.SQLiteLog.LogMessage(System.String)">
  6752.             <summary>
  6753.             Log a message to all the registered log event handlers without going
  6754.             through the SQLite library.
  6755.             </summary>
  6756.             <param name="message">The message to be logged.</param>
  6757.         </member>
  6758.         <member name="M:System.Data.SQLite.SQLiteLog.LogMessage(System.Data.SQLite.SQLiteErrorCode,System.String)">
  6759.             <summary>
  6760.             Log a message to all the registered log event handlers without going
  6761.             through the SQLite library.
  6762.             </summary>
  6763.             <param name="errorCode">The SQLite error code.</param>
  6764.             <param name="message">The message to be logged.</param>
  6765.         </member>
  6766.         <member name="M:System.Data.SQLite.SQLiteLog.LogMessage(System.Int32,System.String)">
  6767.             <summary>
  6768.             Log a message to all the registered log event handlers without going
  6769.             through the SQLite library.
  6770.             </summary>
  6771.             <param name="errorCode">The integer error code.</param>
  6772.             <param name="message">The message to be logged.</param>
  6773.         </member>
  6774.         <member name="M:System.Data.SQLite.SQLiteLog.LogMessage(System.Object,System.String)">
  6775.             <summary>
  6776.             Log a message to all the registered log event handlers without going
  6777.             through the SQLite library.
  6778.             </summary>
  6779.             <param name="errorCode">
  6780.             The error code.  The type of this object value should be
  6781.             System.Int32 or SQLiteErrorCode.
  6782.             </param>
  6783.             <param name="message">The message to be logged.</param>
  6784.         </member>
  6785.         <member name="M:System.Data.SQLite.SQLiteLog.InitializeDefaultHandler">
  6786.             <summary>
  6787.             Creates and initializes the default log event handler.
  6788.             </summary>
  6789.         </member>
  6790.         <member name="M:System.Data.SQLite.SQLiteLog.AddDefaultHandler">
  6791.             <summary>
  6792.             Adds the default log event handler to the list of handlers.
  6793.             </summary>
  6794.         </member>
  6795.         <member name="M:System.Data.SQLite.SQLiteLog.RemoveDefaultHandler">
  6796.             <summary>
  6797.             Removes the default log event handler from the list of handlers.
  6798.             </summary>
  6799.         </member>
  6800.         <member name="M:System.Data.SQLite.SQLiteLog.LogCallback(System.IntPtr,System.Int32,System.IntPtr)">
  6801.              <summary>
  6802.              Internal proxy function that calls any registered application log
  6803.              event handlers.
  6804.             
  6805.              WARNING: This method is used more-or-less directly by native code,
  6806.                       do not modify its type signature.
  6807.              </summary>
  6808.              <param name="pUserData">
  6809.              The extra data associated with this message, if any.
  6810.              </param>
  6811.              <param name="errorCode">
  6812.              The error code associated with this message.
  6813.              </param>
  6814.              <param name="pMessage">
  6815.              The message string to be logged.
  6816.              </param>
  6817.         </member>
  6818.         <member name="M:System.Data.SQLite.SQLiteLog.LogEventHandler(System.Object,System.Data.SQLite.LogEventArgs)">
  6819.             <summary>
  6820.             Default logger.  Currently, uses the Trace class (i.e. sends events
  6821.             to the current trace listeners, if any).
  6822.             </summary>
  6823.             <param name="sender">Should be null.</param>
  6824.             <param name="e">The data associated with this event.</param>
  6825.         </member>
  6826.         <member name="E:System.Data.SQLite.SQLiteLog._handlers">
  6827.             <summary>
  6828.             Member variable to store the application log handler to call.
  6829.             </summary>
  6830.         </member>
  6831.         <member name="E:System.Data.SQLite.SQLiteLog.Log">
  6832.             <summary>
  6833.             This event is raised whenever SQLite raises a logging event.
  6834.             Note that this should be set as one of the first things in the
  6835.             application.
  6836.             </summary>
  6837.         </member>
  6838.         <member name="P:System.Data.SQLite.SQLiteLog.Enabled">
  6839.             <summary>
  6840.             If this property is true, logging is enabled; otherwise, logging is
  6841.             disabled.  When logging is disabled, no logging events will fire.
  6842.             </summary>
  6843.         </member>
  6844.         <member name="T:System.Data.SQLite.SQLiteMetaDataCollectionNames">
  6845.             <summary>
  6846.             MetaDataCollections specific to SQLite
  6847.             </summary>
  6848.         </member>
  6849.         <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.Catalogs">
  6850.             <summary>
  6851.             Returns a list of databases attached to the connection
  6852.             </summary>
  6853.         </member>
  6854.         <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.Columns">
  6855.             <summary>
  6856.             Returns column information for the specified table
  6857.             </summary>
  6858.         </member>
  6859.         <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.Indexes">
  6860.             <summary>
  6861.             Returns index information for the optionally-specified table
  6862.             </summary>
  6863.         </member>
  6864.         <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.IndexColumns">
  6865.             <summary>
  6866.             Returns base columns for the given index
  6867.             </summary>
  6868.         </member>
  6869.         <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.Tables">
  6870.             <summary>
  6871.             Returns the tables in the given catalog
  6872.             </summary>
  6873.         </member>
  6874.         <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.Views">
  6875.             <summary>
  6876.             Returns user-defined views in the given catalog
  6877.             </summary>
  6878.         </member>
  6879.         <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.ViewColumns">
  6880.             <summary>
  6881.             Returns underlying column information on the given view
  6882.             </summary>
  6883.         </member>
  6884.         <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.ForeignKeys">
  6885.             <summary>
  6886.             Returns foreign key information for the given catalog
  6887.             </summary>
  6888.         </member>
  6889.         <member name="F:System.Data.SQLite.SQLiteMetaDataCollectionNames.Triggers">
  6890.             <summary>
  6891.             Returns the triggers on the database
  6892.             </summary>
  6893.         </member>
  6894.         <member name="T:System.Data.SQLite.SQLiteParameter">
  6895.             <summary>
  6896.             SQLite implementation of DbParameter.
  6897.             </summary>
  6898.         </member>
  6899.         <member name="F:System.Data.SQLite.SQLiteParameter._dbType">
  6900.             <summary>
  6901.             The data type of the parameter
  6902.             </summary>
  6903.         </member>
  6904.         <member name="F:System.Data.SQLite.SQLiteParameter._rowVersion">
  6905.             <summary>
  6906.             The version information for mapping the parameter
  6907.             </summary>
  6908.         </member>
  6909.         <member name="F:System.Data.SQLite.SQLiteParameter._objValue">
  6910.             <summary>
  6911.             The value of the data in the parameter
  6912.             </summary>
  6913.         </member>
  6914.         <member name="F:System.Data.SQLite.SQLiteParameter._sourceColumn">
  6915.             <summary>
  6916.             The source column for the parameter
  6917.             </summary>
  6918.         </member>
  6919.         <member name="F:System.Data.SQLite.SQLiteParameter._parameterName">
  6920.             <summary>
  6921.             The column name
  6922.             </summary>
  6923.         </member>
  6924.         <member name="F:System.Data.SQLite.SQLiteParameter._dataSize">
  6925.             <summary>
  6926.             The data size, unused by SQLite
  6927.             </summary>
  6928.         </member>
  6929.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor">
  6930.             <summary>
  6931.             Default constructor
  6932.             </summary>
  6933.         </member>
  6934.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String)">
  6935.             <summary>
  6936.             Constructs a named parameter given the specified parameter name
  6937.             </summary>
  6938.             <param name="parameterName">The parameter name</param>
  6939.         </member>
  6940.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Object)">
  6941.             <summary>
  6942.             Constructs a named parameter given the specified parameter name and initial value
  6943.             </summary>
  6944.             <param name="parameterName">The parameter name</param>
  6945.             <param name="value">The initial value of the parameter</param>
  6946.         </member>
  6947.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType)">
  6948.             <summary>
  6949.             Constructs a named parameter of the specified type
  6950.             </summary>
  6951.             <param name="parameterName">The parameter name</param>
  6952.             <param name="dbType">The datatype of the parameter</param>
  6953.         </member>
  6954.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.String)">
  6955.             <summary>
  6956.             Constructs a named parameter of the specified type and source column reference
  6957.             </summary>
  6958.             <param name="parameterName">The parameter name</param>
  6959.             <param name="dbType">The data type</param>
  6960.             <param name="sourceColumn">The source column</param>
  6961.         </member>
  6962.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.String,System.Data.DataRowVersion)">
  6963.             <summary>
  6964.             Constructs a named parameter of the specified type, source column and row version
  6965.             </summary>
  6966.             <param name="parameterName">The parameter name</param>
  6967.             <param name="dbType">The data type</param>
  6968.             <param name="sourceColumn">The source column</param>
  6969.             <param name="rowVersion">The row version information</param>
  6970.         </member>
  6971.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType)">
  6972.             <summary>
  6973.             Constructs an unnamed parameter of the specified data type
  6974.             </summary>
  6975.             <param name="dbType">The datatype of the parameter</param>
  6976.         </member>
  6977.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType,System.Object)">
  6978.             <summary>
  6979.             Constructs an unnamed parameter of the specified data type and sets the initial value
  6980.             </summary>
  6981.             <param name="dbType">The datatype of the parameter</param>
  6982.             <param name="value">The initial value of the parameter</param>
  6983.         </member>
  6984.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType,System.String)">
  6985.             <summary>
  6986.             Constructs an unnamed parameter of the specified data type and source column
  6987.             </summary>
  6988.             <param name="dbType">The datatype of the parameter</param>
  6989.             <param name="sourceColumn">The source column</param>
  6990.         </member>
  6991.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType,System.String,System.Data.DataRowVersion)">
  6992.             <summary>
  6993.             Constructs an unnamed parameter of the specified data type, source column and row version
  6994.             </summary>
  6995.             <param name="dbType">The data type</param>
  6996.             <param name="sourceColumn">The source column</param>
  6997.             <param name="rowVersion">The row version information</param>
  6998.         </member>
  6999.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.Int32)">
  7000.             <summary>
  7001.             Constructs a named parameter of the specified type and size
  7002.             </summary>
  7003.             <param name="parameterName">The parameter name</param>
  7004.             <param name="parameterType">The data type</param>
  7005.             <param name="parameterSize">The size of the parameter</param>
  7006.         </member>
  7007.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.Int32,System.String)">
  7008.             <summary>
  7009.             Constructs a named parameter of the specified type, size and source column
  7010.             </summary>
  7011.             <param name="parameterName">The name of the parameter</param>
  7012.             <param name="parameterType">The data type</param>
  7013.             <param name="parameterSize">The size of the parameter</param>
  7014.             <param name="sourceColumn">The source column</param>
  7015.         </member>
  7016.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.Int32,System.String,System.Data.DataRowVersion)">
  7017.             <summary>
  7018.             Constructs a named parameter of the specified type, size, source column and row version
  7019.             </summary>
  7020.             <param name="parameterName">The name of the parameter</param>
  7021.             <param name="parameterType">The data type</param>
  7022.             <param name="parameterSize">The size of the parameter</param>
  7023.             <param name="sourceColumn">The source column</param>
  7024.             <param name="rowVersion">The row version information</param>
  7025.         </member>
  7026.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.Int32,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)">
  7027.             <summary>
  7028.             Constructs a named parameter of the specified type, size, source column and row version
  7029.             </summary>
  7030.             <param name="parameterName">The name of the parameter</param>
  7031.             <param name="parameterType">The data type</param>
  7032.             <param name="parameterSize">The size of the parameter</param>
  7033.             <param name="direction">Only input parameters are supported in SQLite</param>
  7034.             <param name="isNullable">Ignored</param>
  7035.             <param name="precision">Ignored</param>
  7036.             <param name="scale">Ignored</param>
  7037.             <param name="sourceColumn">The source column</param>
  7038.             <param name="rowVersion">The row version information</param>
  7039.             <param name="value">The initial value to assign the parameter</param>   
  7040.         </member>
  7041.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.DbType,System.Int32,System.Data.ParameterDirection,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Boolean,System.Object)">
  7042.             <summary>
  7043.             Constructs a named parameter, yet another flavor
  7044.             </summary>
  7045.             <param name="parameterName">The name of the parameter</param>
  7046.             <param name="parameterType">The data type</param>
  7047.             <param name="parameterSize">The size of the parameter</param>
  7048.             <param name="direction">Only input parameters are supported in SQLite</param>
  7049.             <param name="precision">Ignored</param>
  7050.             <param name="scale">Ignored</param>
  7051.             <param name="sourceColumn">The source column</param>
  7052.             <param name="rowVersion">The row version information</param>
  7053.             <param name="sourceColumnNullMapping">Whether or not this parameter is for comparing NULL's</param>
  7054.             <param name="value">The intial value to assign the parameter</param>
  7055.         </member>
  7056.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType,System.Int32)">
  7057.             <summary>
  7058.             Constructs an unnamed parameter of the specified type and size
  7059.             </summary>
  7060.             <param name="parameterType">The data type</param>
  7061.             <param name="parameterSize">The size of the parameter</param>
  7062.         </member>
  7063.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType,System.Int32,System.String)">
  7064.             <summary>
  7065.             Constructs an unnamed parameter of the specified type, size, and source column
  7066.             </summary>
  7067.             <param name="parameterType">The data type</param>
  7068.             <param name="parameterSize">The size of the parameter</param>
  7069.             <param name="sourceColumn">The source column</param>
  7070.         </member>
  7071.         <member name="M:System.Data.SQLite.SQLiteParameter.#ctor(System.Data.DbType,System.Int32,System.String,System.Data.DataRowVersion)">
  7072.             <summary>
  7073.             Constructs an unnamed parameter of the specified type, size, source column and row version
  7074.             </summary>
  7075.             <param name="parameterType">The data type</param>
  7076.             <param name="parameterSize">The size of the parameter</param>
  7077.             <param name="sourceColumn">The source column</param>
  7078.             <param name="rowVersion">The row version information</param>
  7079.         </member>
  7080.         <member name="M:System.Data.SQLite.SQLiteParameter.ResetDbType">
  7081.             <summary>
  7082.             Resets the DbType of the parameter so it can be inferred from the value
  7083.             </summary>
  7084.         </member>
  7085.         <member name="M:System.Data.SQLite.SQLiteParameter.Clone">
  7086.             <summary>
  7087.             Clones a parameter
  7088.             </summary>
  7089.             <returns>A new, unassociated SQLiteParameter</returns>
  7090.         </member>
  7091.         <member name="P:System.Data.SQLite.SQLiteParameter.IsNullable">
  7092.             <summary>
  7093.             Whether or not the parameter can contain a null value
  7094.             </summary>
  7095.         </member>
  7096.         <member name="P:System.Data.SQLite.SQLiteParameter.DbType">
  7097.             <summary>
  7098.             Returns the datatype of the parameter
  7099.             </summary>
  7100.         </member>
  7101.         <member name="P:System.Data.SQLite.SQLiteParameter.Direction">
  7102.             <summary>
  7103.             Supports only input parameters
  7104.             </summary>
  7105.         </member>
  7106.         <member name="P:System.Data.SQLite.SQLiteParameter.ParameterName">
  7107.             <summary>
  7108.             Returns the parameter name
  7109.             </summary>
  7110.         </member>
  7111.         <member name="P:System.Data.SQLite.SQLiteParameter.Size">
  7112.             <summary>
  7113.             Returns the size of the parameter
  7114.             </summary>
  7115.         </member>
  7116.         <member name="P:System.Data.SQLite.SQLiteParameter.SourceColumn">
  7117.             <summary>
  7118.             Gets/sets the source column
  7119.             </summary>
  7120.         </member>
  7121.         <member name="P:System.Data.SQLite.SQLiteParameter.SourceColumnNullMapping">
  7122.             <summary>
  7123.             Used by DbCommandBuilder to determine the mapping for nullable fields
  7124.             </summary>
  7125.         </member>
  7126.         <member name="P:System.Data.SQLite.SQLiteParameter.SourceVersion">
  7127.             <summary>
  7128.             Gets and sets the row version
  7129.             </summary>
  7130.         </member>
  7131.         <member name="P:System.Data.SQLite.SQLiteParameter.Value">
  7132.             <summary>
  7133.             Gets and sets the parameter value.  If no datatype was specified, the datatype will assume the type from the value given.
  7134.             </summary>
  7135.         </member>
  7136.         <member name="T:System.Data.SQLite.SQLiteParameterCollection">
  7137.             <summary>
  7138.             SQLite implementation of DbParameterCollection.
  7139.             </summary>
  7140.         </member>
  7141.         <member name="F:System.Data.SQLite.SQLiteParameterCollection._command">
  7142.             <summary>
  7143.             The underlying command to which this collection belongs
  7144.             </summary>
  7145.         </member>
  7146.         <member name="F:System.Data.SQLite.SQLiteParameterCollection._parameterList">
  7147.             <summary>
  7148.             The internal array of parameters in this collection
  7149.             </summary>
  7150.         </member>
  7151.         <member name="F:System.Data.SQLite.SQLiteParameterCollection._unboundFlag">
  7152.             <summary>
  7153.             Determines whether or not all parameters have been bound to their statement(s)
  7154.             </summary>
  7155.         </member>
  7156.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.#ctor(System.Data.SQLite.SQLiteCommand)">
  7157.             <summary>
  7158.             Initializes the collection
  7159.             </summary>
  7160.             <param name="cmd">The command to which the collection belongs</param>
  7161.         </member>
  7162.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.GetEnumerator">
  7163.             <summary>
  7164.             Retrieves an enumerator for the collection
  7165.             </summary>
  7166.             <returns>An enumerator for the underlying array</returns>
  7167.         </member>
  7168.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.Add(System.String,System.Data.DbType,System.Int32,System.String)">
  7169.             <summary>
  7170.             Adds a parameter to the collection
  7171.             </summary>
  7172.             <param name="parameterName">The parameter name</param>
  7173.             <param name="parameterType">The data type</param>
  7174.             <param name="parameterSize">The size of the value</param>
  7175.             <param name="sourceColumn">The source column</param>
  7176.             <returns>A SQLiteParameter object</returns>
  7177.         </member>
  7178.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.Add(System.String,System.Data.DbType,System.Int32)">
  7179.             <summary>
  7180.             Adds a parameter to the collection
  7181.             </summary>
  7182.             <param name="parameterName">The parameter name</param>
  7183.             <param name="parameterType">The data type</param>
  7184.             <param name="parameterSize">The size of the value</param>
  7185.             <returns>A SQLiteParameter object</returns>
  7186.         </member>
  7187.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.Add(System.String,System.Data.DbType)">
  7188.             <summary>
  7189.             Adds a parameter to the collection
  7190.             </summary>
  7191.             <param name="parameterName">The parameter name</param>
  7192.             <param name="parameterType">The data type</param>
  7193.             <returns>A SQLiteParameter object</returns>
  7194.         </member>
  7195.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.Add(System.Data.SQLite.SQLiteParameter)">
  7196.             <summary>
  7197.             Adds a parameter to the collection
  7198.             </summary>
  7199.             <param name="parameter">The parameter to add</param>
  7200.             <returns>A zero-based index of where the parameter is located in the array</returns>
  7201.         </member>
  7202.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.Add(System.Object)">
  7203.             <summary>
  7204.             Adds a parameter to the collection
  7205.             </summary>
  7206.             <param name="value">The parameter to add</param>
  7207.             <returns>A zero-based index of where the parameter is located in the array</returns>
  7208.         </member>
  7209.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.AddWithValue(System.String,System.Object)">
  7210.             <summary>
  7211.             Adds a named/unnamed parameter and its value to the parameter collection.
  7212.             </summary>
  7213.             <param name="parameterName">Name of the parameter, or null to indicate an unnamed parameter</param>
  7214.             <param name="value">The initial value of the parameter</param>
  7215.             <returns>Returns the SQLiteParameter object created during the call.</returns>
  7216.         </member>
  7217.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.AddRange(System.Data.SQLite.SQLiteParameter[])">
  7218.             <summary>
  7219.             Adds an array of parameters to the collection
  7220.             </summary>
  7221.             <param name="values">The array of parameters to add</param>
  7222.         </member>
  7223.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.AddRange(System.Array)">
  7224.             <summary>
  7225.             Adds an array of parameters to the collection
  7226.             </summary>
  7227.             <param name="values">The array of parameters to add</param>
  7228.         </member>
  7229.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.Clear">
  7230.             <summary>
  7231.             Clears the array and resets the collection
  7232.             </summary>
  7233.         </member>
  7234.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.Contains(System.String)">
  7235.             <summary>
  7236.             Determines if the named parameter exists in the collection
  7237.             </summary>
  7238.             <param name="parameterName">The name of the parameter to check</param>
  7239.             <returns>True if the parameter is in the collection</returns>
  7240.         </member>
  7241.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.Contains(System.Object)">
  7242.             <summary>
  7243.             Determines if the parameter exists in the collection
  7244.             </summary>
  7245.             <param name="value">The SQLiteParameter to check</param>
  7246.             <returns>True if the parameter is in the collection</returns>
  7247.         </member>
  7248.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.CopyTo(System.Array,System.Int32)">
  7249.             <summary>
  7250.             Not implemented
  7251.             </summary>
  7252.             <param name="array"></param>
  7253.             <param name="index"></param>
  7254.         </member>
  7255.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.GetParameter(System.String)">
  7256.             <summary>
  7257.             Retrieve a parameter by name from the collection
  7258.             </summary>
  7259.             <param name="parameterName">The name of the parameter to fetch</param>
  7260.             <returns>A DbParameter object</returns>
  7261.         </member>
  7262.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.GetParameter(System.Int32)">
  7263.             <summary>
  7264.             Retrieves a parameter by its index in the collection
  7265.             </summary>
  7266.             <param name="index">The index of the parameter to retrieve</param>
  7267.             <returns>A DbParameter object</returns>
  7268.         </member>
  7269.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.IndexOf(System.String)">
  7270.             <summary>
  7271.             Returns the index of a parameter given its name
  7272.             </summary>
  7273.             <param name="parameterName">The name of the parameter to find</param>
  7274.             <returns>-1 if not found, otherwise a zero-based index of the parameter</returns>
  7275.         </member>
  7276.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.IndexOf(System.Object)">
  7277.             <summary>
  7278.             Returns the index of a parameter
  7279.             </summary>
  7280.             <param name="value">The parameter to find</param>
  7281.             <returns>-1 if not found, otherwise a zero-based index of the parameter</returns>
  7282.         </member>
  7283.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.Insert(System.Int32,System.Object)">
  7284.             <summary>
  7285.             Inserts a parameter into the array at the specified location
  7286.             </summary>
  7287.             <param name="index">The zero-based index to insert the parameter at</param>
  7288.             <param name="value">The parameter to insert</param>
  7289.         </member>
  7290.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.Remove(System.Object)">
  7291.             <summary>
  7292.             Removes a parameter from the collection
  7293.             </summary>
  7294.             <param name="value">The parameter to remove</param>
  7295.         </member>
  7296.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.RemoveAt(System.String)">
  7297.             <summary>
  7298.             Removes a parameter from the collection given its name
  7299.             </summary>
  7300.             <param name="parameterName">The name of the parameter to remove</param>
  7301.         </member>
  7302.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.RemoveAt(System.Int32)">
  7303.             <summary>
  7304.             Removes a parameter from the collection given its index
  7305.             </summary>
  7306.             <param name="index">The zero-based parameter index to remove</param>
  7307.         </member>
  7308.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.SetParameter(System.String,System.Data.Common.DbParameter)">
  7309.             <summary>
  7310.             Re-assign the named parameter to a new parameter object
  7311.             </summary>
  7312.             <param name="parameterName">The name of the parameter to replace</param>
  7313.             <param name="value">The new parameter</param>
  7314.         </member>
  7315.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.SetParameter(System.Int32,System.Data.Common.DbParameter)">
  7316.             <summary>
  7317.             Re-assign a parameter at the specified index
  7318.             </summary>
  7319.             <param name="index">The zero-based index of the parameter to replace</param>
  7320.             <param name="value">The new parameter</param>
  7321.         </member>
  7322.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.Unbind">
  7323.             <summary>
  7324.             Un-binds all parameters from their statements
  7325.             </summary>
  7326.         </member>
  7327.         <member name="M:System.Data.SQLite.SQLiteParameterCollection.MapParameters(System.Data.SQLite.SQLiteStatement)">
  7328.             <summary>
  7329.             This function attempts to map all parameters in the collection to all statements in a Command.
  7330.             Since named parameters may span multiple statements, this function makes sure all statements are bound
  7331.             to the same named parameter.  Unnamed parameters are bound in sequence.
  7332.             </summary>
  7333.         </member>
  7334.         <member name="P:System.Data.SQLite.SQLiteParameterCollection.IsSynchronized">
  7335.             <summary>
  7336.             Returns false
  7337.             </summary>
  7338.         </member>
  7339.         <member name="P:System.Data.SQLite.SQLiteParameterCollection.IsFixedSize">
  7340.             <summary>
  7341.             Returns false
  7342.             </summary>
  7343.         </member>
  7344.         <member name="P:System.Data.SQLite.SQLiteParameterCollection.IsReadOnly">
  7345.             <summary>
  7346.             Returns false
  7347.             </summary>
  7348.         </member>
  7349.         <member name="P:System.Data.SQLite.SQLiteParameterCollection.SyncRoot">
  7350.             <summary>
  7351.             Returns null
  7352.             </summary>
  7353.         </member>
  7354.         <member name="P:System.Data.SQLite.SQLiteParameterCollection.Count">
  7355.             <summary>
  7356.             Returns a count of parameters in the collection
  7357.             </summary>
  7358.         </member>
  7359.         <member name="P:System.Data.SQLite.SQLiteParameterCollection.Item(System.String)">
  7360.             <summary>
  7361.             Overloaded to specialize the return value of the default indexer
  7362.             </summary>
  7363.             <param name="parameterName">Name of the parameter to get/set</param>
  7364.             <returns>The specified named SQLite parameter</returns>
  7365.         </member>
  7366.         <member name="P:System.Data.SQLite.SQLiteParameterCollection.Item(System.Int32)">
  7367.             <summary>
  7368.             Overloaded to specialize the return value of the default indexer
  7369.             </summary>
  7370.             <param name="index">The index of the parameter to get/set</param>
  7371.             <returns>The specified SQLite parameter</returns>
  7372.         </member>
  7373.         <member name="T:System.Data.SQLite.SQLiteStatement">
  7374.             <summary>
  7375.             Represents a single SQL statement in SQLite.
  7376.             </summary>
  7377.         </member>
  7378.         <member name="F:System.Data.SQLite.SQLiteStatement._sql">
  7379.             <summary>
  7380.             The underlying SQLite object this statement is bound to
  7381.             </summary>
  7382.         </member>
  7383.         <member name="F:System.Data.SQLite.SQLiteStatement._sqlStatement">
  7384.             <summary>
  7385.             The command text of this SQL statement
  7386.             </summary>
  7387.         </member>
  7388.         <member name="F:System.Data.SQLite.SQLiteStatement._sqlite_stmt">
  7389.             <summary>
  7390.             The actual statement pointer
  7391.             </summary>
  7392.         </member>
  7393.         <member name="F:System.Data.SQLite.SQLiteStatement._unnamedParameters">
  7394.             <summary>
  7395.             An index from which unnamed parameters begin
  7396.             </summary>
  7397.         </member>
  7398.         <member name="F:System.Data.SQLite.SQLiteStatement._paramNames">
  7399.             <summary>
  7400.             Names of the parameters as SQLite understands them to be
  7401.             </summary>
  7402.         </member>
  7403.         <member name="F:System.Data.SQLite.SQLiteStatement._paramValues">
  7404.             <summary>
  7405.             Parameters for this statement
  7406.             </summary>
  7407.         </member>
  7408.         <member name="F:System.Data.SQLite.SQLiteStatement._command">
  7409.             <summary>
  7410.             Command this statement belongs to (if any)
  7411.             </summary>
  7412.         </member>
  7413.         <member name="F:System.Data.SQLite.SQLiteStatement._flags">
  7414.             <summary>
  7415.             The flags associated with the parent connection object.
  7416.             </summary>
  7417.         </member>
  7418.         <member name="M:System.Data.SQLite.SQLiteStatement.#ctor(System.Data.SQLite.SQLiteBase,System.Data.SQLite.SQLiteConnectionFlags,System.Data.SQLite.SQLiteStatementHandle,System.String,System.Data.SQLite.SQLiteStatement)">
  7419.             <summary>
  7420.             Initializes the statement and attempts to get all information about parameters in the statement
  7421.             </summary>
  7422.             <param name="sqlbase">The base SQLite object</param>
  7423.             <param name="flags">The flags associated with the parent connection object</param>
  7424.             <param name="stmt">The statement</param>
  7425.             <param name="strCommand">The command text for this statement</param>
  7426.             <param name="previous">The previous command in a multi-statement command</param>
  7427.         </member>
  7428.         <member name="M:System.Data.SQLite.SQLiteStatement.Dispose">
  7429.             <summary>
  7430.             Disposes and finalizes the statement
  7431.             </summary>
  7432.         </member>
  7433.         <member name="M:System.Data.SQLite.SQLiteStatement.TryGetChanges(System.Int32@)">
  7434.             <summary>
  7435.             If the underlying database connection is open, fetches the number of changed rows
  7436.             resulting from the most recent query; otherwise, does nothing.
  7437.             </summary>
  7438.             <param name="changes">
  7439.             The number of changes when true is returned.
  7440.             Undefined if false is returned.
  7441.             </param>
  7442.             <returns>Non-zero if the number of changed rows was fetched.</returns>
  7443.         </member>
  7444.         <member name="M:System.Data.SQLite.SQLiteStatement.MapParameter(System.String,System.Data.SQLite.SQLiteParameter)">
  7445.             <summary>
  7446.             Called by SQLiteParameterCollection, this function determines if the specified parameter name belongs to
  7447.             this statement, and if so, keeps a reference to the parameter so it can be bound later.
  7448.             </summary>
  7449.             <param name="s">The parameter name to map</param>
  7450.             <param name="p">The parameter to assign it</param>
  7451.         </member>
  7452.         <member name="M:System.Data.SQLite.SQLiteStatement.BindParameters">
  7453.             <summary>
  7454.              Bind all parameters, making sure the caller didn't miss any
  7455.             </summary>
  7456.         </member>
  7457.         <member name="M:System.Data.SQLite.SQLiteStatement.BindParameter(System.Int32,System.Data.SQLite.SQLiteParameter)">
  7458.             <summary>
  7459.             Perform the bind operation for an individual parameter
  7460.             </summary>
  7461.             <param name="index">The index of the parameter to bind</param>
  7462.             <param name="param">The parameter we're binding</param>
  7463.         </member>
  7464.         <member name="T:System.Data.SQLite.SQLiteTransaction">
  7465.             <summary>
  7466.             SQLite implementation of DbTransaction.
  7467.             </summary>
  7468.         </member>
  7469.         <member name="F:System.Data.SQLite.SQLiteTransaction._cnn">
  7470.             <summary>
  7471.             The connection to which this transaction is bound
  7472.             </summary>
  7473.         </member>
  7474.         <member name="M:System.Data.SQLite.SQLiteTransaction.#ctor(System.Data.SQLite.SQLiteConnection,System.Boolean)">
  7475.             <summary>
  7476.             Constructs the transaction object, binding it to the supplied connection
  7477.             </summary>
  7478.             <param name="connection">The connection to open a transaction on</param>
  7479.             <param name="deferredLock">TRUE to defer the writelock, or FALSE to lock immediately</param>
  7480.         </member>
  7481.         <member name="M:System.Data.SQLite.SQLiteTransaction.Dispose(System.Boolean)">
  7482.             <summary>
  7483.             Disposes the transaction.  If it is currently active, any changes are rolled back.
  7484.             </summary>
  7485.         </member>
  7486.         <member name="M:System.Data.SQLite.SQLiteTransaction.Commit">
  7487.             <summary>
  7488.             Commits the current transaction.
  7489.             </summary>
  7490.         </member>
  7491.         <member name="M:System.Data.SQLite.SQLiteTransaction.Rollback">
  7492.             <summary>
  7493.             Rolls back the active transaction.
  7494.             </summary>
  7495.         </member>
  7496.         <member name="P:System.Data.SQLite.SQLiteTransaction.Connection">
  7497.             <summary>
  7498.             Returns the underlying connection to which this transaction applies.
  7499.             </summary>
  7500.         </member>
  7501.         <member name="P:System.Data.SQLite.SQLiteTransaction.DbConnection">
  7502.             <summary>
  7503.             Forwards to the local Connection property
  7504.             </summary>
  7505.         </member>
  7506.         <member name="P:System.Data.SQLite.SQLiteTransaction.IsolationLevel">
  7507.             <summary>
  7508.             Gets the isolation level of the transaction.  SQLite only supports Serializable transactions.
  7509.             </summary>
  7510.         </member>
  7511.         <member name="F:System.Data.SQLite.UnsafeNativeMethods.DllFileExtension">
  7512.             <summary>
  7513.             The file extension used for dynamic link libraries.
  7514.             </summary>
  7515.         </member>
  7516.         <member name="F:System.Data.SQLite.UnsafeNativeMethods.ConfigFileExtension">
  7517.             <summary>
  7518.             The file extension used for the XML configuration file.
  7519.             </summary>
  7520.         </member>
  7521.         <member name="F:System.Data.SQLite.UnsafeNativeMethods.XmlConfigFileName">
  7522.             <summary>
  7523.             This is the name of the XML configuration file specific to the
  7524.             System.Data.SQLite assembly.
  7525.             </summary>
  7526.         </member>
  7527.         <member name="F:System.Data.SQLite.UnsafeNativeMethods.staticSyncRoot">
  7528.             <summary>
  7529.             This lock is used to protect the static _SQLiteNativeModuleFileName,
  7530.             _SQLiteNativeModuleHandle, and processorArchitecturePlatforms fields.
  7531.             </summary>
  7532.         </member>
  7533.         <member name="F:System.Data.SQLite.UnsafeNativeMethods.processorArchitecturePlatforms">
  7534.             <summary>
  7535.             This dictionary stores the mappings between processor architecture
  7536.             names and platform names.  These mappings are now used for two
  7537.             purposes.  First, they are used to determine if the assembly code
  7538.             base should be used instead of the location, based upon whether one
  7539.             or more of the named sub-directories exist within the assembly code
  7540.             base.  Second, they are used to assist in loading the appropriate
  7541.             SQLite interop assembly into the current process.
  7542.             </summary>
  7543.         </member>
  7544.         <member name="M:System.Data.SQLite.UnsafeNativeMethods.#cctor">
  7545.             <summary>
  7546.             For now, this method simply calls the Initialize method.
  7547.             </summary>
  7548.         </member>
  7549.         <member name="M:System.Data.SQLite.UnsafeNativeMethods.Initialize">
  7550.             <summary>
  7551.             Attempts to initialize this class by pre-loading the native SQLite
  7552.             library for the processor architecture of the current process.
  7553.             </summary>
  7554.         </member>
  7555.         <member name="M:System.Data.SQLite.UnsafeNativeMethods.GetXmlConfigFileName">
  7556.             <summary>
  7557.             Queries and returns the XML configuration file name for the assembly
  7558.             containing the managed System.Data.SQLite components.
  7559.             </summary>
  7560.             <returns>
  7561.             The XML configuration file name -OR- null if it cannot be determined
  7562.             or does not exist.
  7563.             </returns>
  7564.         </member>
  7565.         <member name="M:System.Data.SQLite.UnsafeNativeMethods.GetSettingValue(System.String,System.String)">
  7566.             <summary>
  7567.             Queries and returns the value of the specified setting, using the XML
  7568.             configuration file and/or the environment variables for the current
  7569.             process and/or the current system, when available.
  7570.             </summary>
  7571.             <param name="name">
  7572.             The name of the setting.
  7573.             </param>
  7574.             <param name="default">
  7575.             The value to be returned if the setting has not been set explicitly
  7576.             or cannot be determined.
  7577.             </param>
  7578.             <returns>
  7579.             The value of the setting -OR- the default value specified by
  7580.             <paramref name="default" /> if it has not been set explicitly or
  7581.             cannot be determined.  By default, all references to existing
  7582.             environment variables will be expanded to their corresponding values
  7583.             within the value to be returned unless either the "No_Expand" or
  7584.             "No_Expand_<paramref name="name" />" environment variable is set [to
  7585.             anything].
  7586.             </returns>
  7587.         </member>
  7588.         <member name="M:System.Data.SQLite.UnsafeNativeMethods.GetAssemblyDirectory">
  7589.             <summary>
  7590.             Queries and returns the directory for the assembly currently being
  7591.             executed.
  7592.             </summary>
  7593.             <returns>
  7594.             The directory for the assembly currently being executed -OR- null if
  7595.             it cannot be determined.
  7596.             </returns>
  7597.         </member>
  7598.         <member name="F:System.Data.SQLite.UnsafeNativeMethods.PROCESSOR_ARCHITECTURE">
  7599.             <summary>
  7600.             The name of the environment variable containing the processor
  7601.             architecture of the current process.
  7602.             </summary>
  7603.         </member>
  7604.         <member name="M:System.Data.SQLite.UnsafeNativeMethods.LoadLibrary(System.String)">
  7605.             <summary>
  7606.             This is the P/Invoke method that wraps the native Win32 LoadLibrary
  7607.             function.  See the MSDN documentation for full details on what it
  7608.             does.
  7609.             </summary>
  7610.             <param name="fileName">
  7611.             The name of the executable library.
  7612.             </param>
  7613.             <returns>
  7614.             The native module handle upon success -OR- IntPtr.Zero on failure.
  7615.             </returns>
  7616.         </member>
  7617.         <member name="F:System.Data.SQLite.UnsafeNativeMethods._SQLiteNativeModuleFileName">
  7618.             <summary>
  7619.             The native module file name for the native SQLite library or null.
  7620.             </summary>
  7621.         </member>
  7622.         <member name="F:System.Data.SQLite.UnsafeNativeMethods._SQLiteNativeModuleHandle">
  7623.             <summary>
  7624.             The native module handle for the native SQLite library or the value
  7625.             IntPtr.Zero.
  7626.             </summary>
  7627.         </member>
  7628.         <member name="M:System.Data.SQLite.UnsafeNativeMethods.SearchForDirectory(System.String@,System.String@)">
  7629.             <summary>
  7630.             Searches for the native SQLite library in the directory containing
  7631.             the assembly currently being executed as well as the base directory
  7632.             for the current application domain.
  7633.             </summary>
  7634.             <param name="baseDirectory">
  7635.             Upon success, this parameter will be modified to refer to the base
  7636.             directory containing the native SQLite library.
  7637.             </param>
  7638.             <param name="processorArchitecture">
  7639.             Upon success, this parameter will be modified to refer to the name
  7640.             of the immediate directory (i.e. the offset from the base directory)
  7641.             containing the native SQLite library.
  7642.             </param>
  7643.             <returns>
  7644.             Non-zero (success) if the native SQLite library was found; otherwise,
  7645.             zero (failure).
  7646.             </returns>
  7647.         </member>
  7648.         <member name="M:System.Data.SQLite.UnsafeNativeMethods.GetBaseDirectory">
  7649.             <summary>
  7650.             Queries and returns the base directory of the current application
  7651.             domain.
  7652.             </summary>
  7653.             <returns>
  7654.             The base directory for the current application domain -OR- null if it
  7655.             cannot be determined.
  7656.             </returns>
  7657.         </member>
  7658.         <member name="M:System.Data.SQLite.UnsafeNativeMethods.FixUpDllFileName(System.String)">
  7659.             <summary>
  7660.             Determines if the dynamic link library file name requires a suffix
  7661.             and adds it if necessary.
  7662.             </summary>
  7663.             <param name="fileName">
  7664.             The original dynamic link library file name to inspect.
  7665.             </param>
  7666.             <returns>
  7667.             The dynamic link library file name, possibly modified to include an
  7668.             extension.
  7669.             </returns>
  7670.         </member>
  7671.         <member name="M:System.Data.SQLite.UnsafeNativeMethods.GetProcessorArchitecture">
  7672.             <summary>
  7673.             Queries and returns the processor architecture of the current
  7674.             process.
  7675.             </summary>
  7676.             <returns>
  7677.             The processor architecture of the current process -OR- null if it
  7678.             cannot be determined.
  7679.             </returns>
  7680.         </member>
  7681.         <member name="M:System.Data.SQLite.UnsafeNativeMethods.GetPlatformName(System.String)">
  7682.             <summary>
  7683.             Given the processor architecture, returns the name of the platform.
  7684.             </summary>
  7685.             <param name="processorArchitecture">
  7686.             The processor architecture to be translated to a platform name.
  7687.             </param>
  7688.             <returns>
  7689.             The platform name for the specified processor architecture -OR- null
  7690.             if it cannot be determined.
  7691.             </returns>
  7692.         </member>
  7693.         <member name="M:System.Data.SQLite.UnsafeNativeMethods.PreLoadSQLiteDll(System.String,System.String,System.String@,System.IntPtr@)">
  7694.             <summary>
  7695.             Attempts to load the native SQLite library based on the specified
  7696.             directory and processor architecture.
  7697.             </summary>
  7698.             <param name="baseDirectory">
  7699.             The base directory to use, null for default (the base directory of
  7700.             the current application domain).  This directory should contain the
  7701.             processor architecture specific sub-directories.
  7702.             </param>
  7703.             <param name="processorArchitecture">
  7704.             The requested processor architecture, null for default (the
  7705.             processor architecture of the current process).  This caller should
  7706.             almost always specify null for this parameter.
  7707.             </param>
  7708.             <param name="nativeModuleFileName">
  7709.             The candidate native module file name to load will be stored here,
  7710.             if necessary.
  7711.             </param>
  7712.             <param name="nativeModuleHandle">
  7713.             The native module handle as returned by LoadLibrary will be stored
  7714.             here, if necessary.  This value will be IntPtr.Zero if the call to
  7715.             LoadLibrary fails.
  7716.             </param>
  7717.             <returns>
  7718.             Non-zero if the native module was loaded successfully; otherwise,
  7719.             zero.
  7720.             </returns>
  7721.         </member>
  7722.         <member name="T:System.Data.SQLite.SR">
  7723.             <summary>
  7724.               A strongly-typed resource class, for looking up localized strings, etc.
  7725.             </summary>
  7726.         </member>
  7727.         <member name="P:System.Data.SQLite.SR.ResourceManager">
  7728.             <summary>
  7729.               Returns the cached ResourceManager instance used by this class.
  7730.             </summary>
  7731.         </member>
  7732.         <member name="P:System.Data.SQLite.SR.Culture">
  7733.             <summary>
  7734.               Overrides the current thread's CurrentUICulture property for all
  7735.               resource lookups using this strongly typed resource class.
  7736.             </summary>
  7737.         </member>
  7738.         <member name="P:System.Data.SQLite.SR.DataTypes">
  7739.              <summary>
  7740.                Looks up a localized string similar to <?xml version="1.0" standalone="yes"?>
  7741.             <DocumentElement>
  7742.               <DataTypes>
  7743.                 <TypeName>smallint</TypeName>
  7744.                 <ProviderDbType>10</ProviderDbType>
  7745.                 <ColumnSize>5</ColumnSize>
  7746.                 <DataType>System.Int16</DataType>
  7747.                 <CreateFormat>smallint</CreateFormat>
  7748.                 <IsAutoIncrementable>false</IsAutoIncrementable>
  7749.                 <IsCaseSensitive>false</IsCaseSensitive>
  7750.                 <IsFixedLength>true</IsFixedLength>
  7751.                 <IsFixedPrecisionScale>true</IsFixedPrecisionScale>
  7752.                 <IsLong>false</IsLong>
  7753.                 <IsNullable>true</ [rest of string was truncated]";.
  7754.              </summary>
  7755.         </member>
  7756.         <member name="P:System.Data.SQLite.SR.Keywords">
  7757.             <summary>
  7758.               Looks up a localized string similar to ALL,ALTER,AND,AS,AUTOINCREMENT,BETWEEN,BY,CASE,CHECK,COLLATE,COMMIT,CONSTRAINT,CREATE,CROSS,DEFAULT,DEFERRABLE,DELETE,DISTINCT,DROP,ELSE,ESCAPE,EXCEPT,FOREIGN,FROM,FULL,GROUP,HAVING,IN,INDEX,INNER,INSERT,INTERSECT,INTO,IS,ISNULL,JOIN,LEFT,LIMIT,NATURAL,NOT,NOTNULL,NULL,ON,OR,ORDER,OUTER,PRIMARY,REFERENCES,RIGHT,ROLLBACK,SELECT,SET,TABLE,THEN,TO,TRANSACTION,UNION,UNIQUE,UPDATE,USING,VALUES,WHEN,WHERE.
  7759.             </summary>
  7760.         </member>
  7761.         <member name="P:System.Data.SQLite.SR.MetaDataCollections">
  7762.              <summary>
  7763.                Looks up a localized string similar to <?xml version="1.0" encoding="utf-8" ?>
  7764.             <DocumentElement>
  7765.               <MetaDataCollections>
  7766.                 <CollectionName>MetaDataCollections</CollectionName>
  7767.                 <NumberOfRestrictions>0</NumberOfRestrictions>
  7768.                 <NumberOfIdentifierParts>0</NumberOfIdentifierParts>
  7769.               </MetaDataCollections>
  7770.               <MetaDataCollections>
  7771.                 <CollectionName>DataSourceInformation</CollectionName>
  7772.                 <NumberOfRestrictions>0</NumberOfRestrictions>
  7773.                 <NumberOfIdentifierParts>0</NumberOfIdentifierParts>
  7774.               </MetaDataCollections>
  7775.               <MetaDataC [rest of string was truncated]";.
  7776.              </summary>
  7777.         </member>
  7778.         <member name="T:System.Data.SQLite.SQLiteContext">
  7779.             <summary>
  7780.             This class represents a context from the SQLite core library that can
  7781.             be passed to the sqlite3_result_*() and associated functions.
  7782.             </summary>
  7783.         </member>
  7784.         <member name="T:System.Data.SQLite.ISQLiteNativeHandle">
  7785.             <summary>
  7786.             This interface represents a native handle provided by the SQLite core
  7787.             library.
  7788.             </summary>
  7789.         </member>
  7790.         <member name="P:System.Data.SQLite.ISQLiteNativeHandle.NativeHandle">
  7791.             <summary>
  7792.             The native handle value.
  7793.             </summary>
  7794.         </member>
  7795.         <member name="F:System.Data.SQLite.SQLiteContext.pContext">
  7796.             <summary>
  7797.             The native context handle.
  7798.             </summary>
  7799.         </member>
  7800.         <member name="M:System.Data.SQLite.SQLiteContext.#ctor(System.IntPtr)">
  7801.             <summary>
  7802.             Constructs an instance of this class using the specified native
  7803.             context handle.
  7804.             </summary>
  7805.             <param name="pContext">
  7806.             The native context handle to use.
  7807.             </param>
  7808.         </member>
  7809.         <member name="M:System.Data.SQLite.SQLiteContext.SetNull">
  7810.             <summary>
  7811.             Sets the context result to NULL.
  7812.             </summary>
  7813.         </member>
  7814.         <member name="M:System.Data.SQLite.SQLiteContext.SetDouble(System.Double)">
  7815.             <summary>
  7816.             Sets the context result to the specified <see cref="T:System.Double"/>
  7817.             value.
  7818.             </summary>
  7819.             <param name="value">
  7820.             The <see cref="T:System.Double"/> value to use.
  7821.             </param>
  7822.         </member>
  7823.         <member name="M:System.Data.SQLite.SQLiteContext.SetInt(System.Int32)">
  7824.             <summary>
  7825.             Sets the context result to the specified <see cref="T:System.Int32"/>
  7826.             value.
  7827.             </summary>
  7828.             <param name="value">
  7829.             The <see cref="T:System.Int32"/> value to use.
  7830.             </param>
  7831.         </member>
  7832.         <member name="M:System.Data.SQLite.SQLiteContext.SetInt64(System.Int64)">
  7833.             <summary>
  7834.             Sets the context result to the specified <see cref="T:System.Int64"/>
  7835.             value.
  7836.             </summary>
  7837.             <param name="value">
  7838.             The <see cref="T:System.Int64"/> value to use.
  7839.             </param>
  7840.         </member>
  7841.         <member name="M:System.Data.SQLite.SQLiteContext.SetString(System.String)">
  7842.             <summary>
  7843.             Sets the context result to the specified <see cref="T:System.String"/>
  7844.             value.
  7845.             </summary>
  7846.             <param name="value">
  7847.             The <see cref="T:System.String"/> value to use.  This value will be
  7848.             converted to the UTF-8 encoding prior to being used.
  7849.             </param>
  7850.         </member>
  7851.         <member name="M:System.Data.SQLite.SQLiteContext.SetError(System.String)">
  7852.             <summary>
  7853.             Sets the context result to the specified <see cref="T:System.String"/>
  7854.             value containing an error message.
  7855.             </summary>
  7856.             <param name="value">
  7857.             The <see cref="T:System.String"/> value containing the error message text.
  7858.             This value will be converted to the UTF-8 encoding prior to being
  7859.             used.
  7860.             </param>
  7861.         </member>
  7862.         <member name="M:System.Data.SQLite.SQLiteContext.SetErrorCode(System.Data.SQLite.SQLiteErrorCode)">
  7863.             <summary>
  7864.             Sets the context result to the specified <see cref="T:System.Data.SQLite.SQLiteErrorCode"/>
  7865.             value.
  7866.             </summary>
  7867.             <param name="value">
  7868.             The <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value to use.
  7869.             </param>
  7870.         </member>
  7871.         <member name="M:System.Data.SQLite.SQLiteContext.SetErrorTooBig">
  7872.             <summary>
  7873.             Sets the context result to contain the error code SQLITE_TOOBIG.
  7874.             </summary>
  7875.         </member>
  7876.         <member name="M:System.Data.SQLite.SQLiteContext.SetErrorNoMemory">
  7877.             <summary>
  7878.             Sets the context result to contain the error code SQLITE_NOMEM.
  7879.             </summary>
  7880.         </member>
  7881.         <member name="M:System.Data.SQLite.SQLiteContext.SetBlob(System.Byte[])">
  7882.             <summary>
  7883.             Sets the context result to the specified <see cref="T:System.Byte"/> array
  7884.             value.
  7885.             </summary>
  7886.             <param name="value">
  7887.             The <see cref="T:System.Byte"/> array value to use.
  7888.             </param>
  7889.         </member>
  7890.         <member name="M:System.Data.SQLite.SQLiteContext.SetZeroBlob(System.Int32)">
  7891.             <summary>
  7892.             Sets the context result to a BLOB of zeros of the specified size.
  7893.             </summary>
  7894.             <param name="value">
  7895.             The number of zero bytes to use for the BLOB context result.
  7896.             </param>
  7897.         </member>
  7898.         <member name="M:System.Data.SQLite.SQLiteContext.SetValue(System.Data.SQLite.SQLiteValue)">
  7899.             <summary>
  7900.             Sets the context result to the specified <see cref="T:System.Data.SQLite.SQLiteValue"/>.
  7901.             </summary>
  7902.             <param name="value">
  7903.             The <see cref="T:System.Data.SQLite.SQLiteValue"/> to use.
  7904.             </param>
  7905.         </member>
  7906.         <member name="P:System.Data.SQLite.SQLiteContext.NativeHandle">
  7907.             <summary>
  7908.             Returns the underlying SQLite native handle associated with this
  7909.             object instance.
  7910.             </summary>
  7911.         </member>
  7912.         <member name="T:System.Data.SQLite.SQLiteValue">
  7913.             <summary>
  7914.             This class represents a value from the SQLite core library that can be
  7915.             passed to the sqlite3_value_*() and associated functions.
  7916.             </summary>
  7917.         </member>
  7918.         <member name="F:System.Data.SQLite.SQLiteValue.pValue">
  7919.             <summary>
  7920.             The native value handle.
  7921.             </summary>
  7922.         </member>
  7923.         <member name="M:System.Data.SQLite.SQLiteValue.#ctor(System.IntPtr)">
  7924.             <summary>
  7925.             Constructs an instance of this class using the specified native
  7926.             value handle.
  7927.             </summary>
  7928.             <param name="pValue">
  7929.             The native value handle to use.
  7930.             </param>
  7931.         </member>
  7932.         <member name="M:System.Data.SQLite.SQLiteValue.PreventNativeAccess">
  7933.             <summary>
  7934.             Invalidates the native value handle, thereby preventing further
  7935.             access to it from this object instance.
  7936.             </summary>
  7937.         </member>
  7938.         <member name="M:System.Data.SQLite.SQLiteValue.ArrayFromSizeAndIntPtr(System.Int32,System.IntPtr)">
  7939.             <summary>
  7940.             Converts a logical array of native pointers to native sqlite3_value
  7941.             structures into a managed array of <see cref="T:System.Data.SQLite.SQLiteValue"/>
  7942.             object instances.
  7943.             </summary>
  7944.             <param name="argc">
  7945.             The number of elements in the logical array of native sqlite3_value
  7946.             structures.
  7947.             </param>
  7948.             <param name="argv">
  7949.             The native pointer to the logical array of native sqlite3_value
  7950.             structures to convert.
  7951.             </param>
  7952.             <returns>
  7953.             The managed array of <see cref="T:System.Data.SQLite.SQLiteValue"/> object instances or
  7954.             null upon failure.
  7955.             </returns>
  7956.         </member>
  7957.         <member name="M:System.Data.SQLite.SQLiteValue.GetTypeAffinity">
  7958.             <summary>
  7959.             Gets and returns the type affinity associated with this value.
  7960.             </summary>
  7961.             <returns>
  7962.             The type affinity associated with this value.
  7963.             </returns>
  7964.         </member>
  7965.         <member name="M:System.Data.SQLite.SQLiteValue.GetBytes">
  7966.             <summary>
  7967.             Gets and returns the number of bytes associated with this value, if
  7968.             it refers to a UTF-8 encoded string.
  7969.             </summary>
  7970.             <returns>
  7971.             The number of bytes associated with this value.  The returned value
  7972.             may be zero.
  7973.             </returns>
  7974.         </member>
  7975.         <member name="M:System.Data.SQLite.SQLiteValue.GetInt">
  7976.             <summary>
  7977.             Gets and returns the <see cref="T:System.Int32"/> associated with this
  7978.             value.
  7979.             </summary>
  7980.             <returns>
  7981.             The <see cref="T:System.Int32"/> associated with this value.
  7982.             </returns>
  7983.         </member>
  7984.         <member name="M:System.Data.SQLite.SQLiteValue.GetInt64">
  7985.             <summary>
  7986.             Gets and returns the <see cref="T:System.Int64"/> associated with
  7987.             this value.
  7988.             </summary>
  7989.             <returns>
  7990.             The <see cref="T:System.Int64"/> associated with this value.
  7991.             </returns>
  7992.         </member>
  7993.         <member name="M:System.Data.SQLite.SQLiteValue.GetDouble">
  7994.             <summary>
  7995.             Gets and returns the <see cref="T:System.Double"/> associated with this
  7996.             value.
  7997.             </summary>
  7998.             <returns>
  7999.             The <see cref="T:System.Double"/> associated with this value.
  8000.             </returns>
  8001.         </member>
  8002.         <member name="M:System.Data.SQLite.SQLiteValue.GetString">
  8003.             <summary>
  8004.             Gets and returns the <see cref="T:System.String"/> associated with this
  8005.             value.
  8006.             </summary>
  8007.             <returns>
  8008.             The <see cref="T:System.String"/> associated with this value.  The value is
  8009.             converted from the UTF-8 encoding prior to being returned.
  8010.             </returns>
  8011.         </member>
  8012.         <member name="M:System.Data.SQLite.SQLiteValue.GetBlob">
  8013.             <summary>
  8014.             Gets and returns the <see cref="T:System.Byte"/> array associated with this
  8015.             value.
  8016.             </summary>
  8017.             <returns>
  8018.             The <see cref="T:System.Byte"/> array associated with this value.
  8019.             </returns>
  8020.         </member>
  8021.         <member name="M:System.Data.SQLite.SQLiteValue.Persist">
  8022.             <summary>
  8023.             Uses the native value handle to obtain and store the managed value
  8024.             for this object instance, thus saving it for later use.  The type
  8025.             of the managed value is determined by the type affinity of the
  8026.             native value.  If the type affinity is not recognized by this
  8027.             method, no work is done and false is returned.
  8028.             </summary>
  8029.             <returns>
  8030.             Non-zero if the native value was persisted successfully.
  8031.             </returns>
  8032.         </member>
  8033.         <member name="P:System.Data.SQLite.SQLiteValue.NativeHandle">
  8034.             <summary>
  8035.             Returns the underlying SQLite native handle associated with this
  8036.             object instance.
  8037.             </summary>
  8038.         </member>
  8039.         <member name="P:System.Data.SQLite.SQLiteValue.Persisted">
  8040.             <summary>
  8041.             Returns non-zero if the native SQLite value has been successfully
  8042.             persisted as a managed value within this object instance (i.e. the
  8043.             <see cref="P:System.Data.SQLite.SQLiteValue.Value"/> property may then be read successfully).
  8044.             </summary>
  8045.         </member>
  8046.         <member name="P:System.Data.SQLite.SQLiteValue.Value">
  8047.             <summary>
  8048.             If the managed value for this object instance is available (i.e. it
  8049.             has been previously persisted via the <see cref="M:System.Data.SQLite.SQLiteValue.Persist"/>) method,
  8050.             that value is returned; otherwise, an exception is thrown.  The
  8051.             returned value may be null.
  8052.             </summary>
  8053.         </member>
  8054.         <member name="T:System.Data.SQLite.SQLiteIndexConstraintOp">
  8055.             <summary>
  8056.             These are the allowed values for the operators that are part of a
  8057.             constraint term in the WHERE clause of a query that uses a virtual
  8058.             table.
  8059.             </summary>
  8060.         </member>
  8061.         <member name="F:System.Data.SQLite.SQLiteIndexConstraintOp.EqualTo">
  8062.             <summary>
  8063.             This value represents the equality operator.
  8064.             </summary>
  8065.         </member>
  8066.         <member name="F:System.Data.SQLite.SQLiteIndexConstraintOp.GreaterThan">
  8067.             <summary>
  8068.             This value represents the greater than operator.
  8069.             </summary>
  8070.         </member>
  8071.         <member name="F:System.Data.SQLite.SQLiteIndexConstraintOp.LessThanOrEqualTo">
  8072.             <summary>
  8073.             This value represents the less than or equal to operator.
  8074.             </summary>
  8075.         </member>
  8076.         <member name="F:System.Data.SQLite.SQLiteIndexConstraintOp.LessThan">
  8077.             <summary>
  8078.             This value represents the less than operator.
  8079.             </summary>
  8080.         </member>
  8081.         <member name="F:System.Data.SQLite.SQLiteIndexConstraintOp.GreaterThanOrEqualTo">
  8082.             <summary>
  8083.             This value represents the greater than or equal to operator.
  8084.             </summary>
  8085.         </member>
  8086.         <member name="F:System.Data.SQLite.SQLiteIndexConstraintOp.Match">
  8087.             <summary>
  8088.             This value represents the MATCH operator.
  8089.             </summary>
  8090.         </member>
  8091.         <member name="T:System.Data.SQLite.SQLiteIndexConstraint">
  8092.             <summary>
  8093.             This class represents the native sqlite3_index_constraint structure
  8094.             from the SQLite core library.
  8095.             </summary>
  8096.         </member>
  8097.         <member name="M:System.Data.SQLite.SQLiteIndexConstraint.#ctor(System.Data.SQLite.UnsafeNativeMethods.sqlite3_index_constraint)">
  8098.             <summary>
  8099.             Constructs an instance of this class using the specified native
  8100.             sqlite3_index_constraint structure.
  8101.             </summary>
  8102.             <param name="constraint">
  8103.             The native sqlite3_index_constraint structure to use.
  8104.             </param>
  8105.         </member>
  8106.         <member name="M:System.Data.SQLite.SQLiteIndexConstraint.#ctor(System.Int32,System.Data.SQLite.SQLiteIndexConstraintOp,System.Byte,System.Int32)">
  8107.             <summary>
  8108.             Constructs an instance of this class using the specified field
  8109.             values.
  8110.             </summary>
  8111.             <param name="iColumn">
  8112.             Column on left-hand side of constraint.
  8113.             </param>
  8114.             <param name="op">
  8115.             Constraint operator (<see cref="T:System.Data.SQLite.SQLiteIndexConstraintOp"/>).
  8116.             </param>
  8117.             <param name="usable">
  8118.             True if this constraint is usable.
  8119.             </param>
  8120.             <param name="iTermOffset">
  8121.             Used internally - <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/>
  8122.             should ignore.
  8123.             </param>
  8124.         </member>
  8125.         <member name="F:System.Data.SQLite.SQLiteIndexConstraint.iColumn">
  8126.             <summary>
  8127.             Column on left-hand side of constraint.
  8128.             </summary>
  8129.         </member>
  8130.         <member name="F:System.Data.SQLite.SQLiteIndexConstraint.op">
  8131.             <summary>
  8132.             Constraint operator (<see cref="T:System.Data.SQLite.SQLiteIndexConstraintOp"/>).
  8133.             </summary>
  8134.         </member>
  8135.         <member name="F:System.Data.SQLite.SQLiteIndexConstraint.usable">
  8136.             <summary>
  8137.             True if this constraint is usable.
  8138.             </summary>
  8139.         </member>
  8140.         <member name="F:System.Data.SQLite.SQLiteIndexConstraint.iTermOffset">
  8141.             <summary>
  8142.             Used internally - <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/>
  8143.             should ignore.
  8144.             </summary>
  8145.         </member>
  8146.         <member name="T:System.Data.SQLite.SQLiteIndexOrderBy">
  8147.             <summary>
  8148.             This class represents the native sqlite3_index_orderby structure from
  8149.             the SQLite core library.
  8150.             </summary>
  8151.         </member>
  8152.         <member name="M:System.Data.SQLite.SQLiteIndexOrderBy.#ctor(System.Data.SQLite.UnsafeNativeMethods.sqlite3_index_orderby)">
  8153.             <summary>
  8154.             Constructs an instance of this class using the specified native
  8155.             sqlite3_index_orderby structure.
  8156.             </summary>
  8157.             <param name="orderBy">
  8158.             The native sqlite3_index_orderby structure to use.
  8159.             </param>
  8160.         </member>
  8161.         <member name="M:System.Data.SQLite.SQLiteIndexOrderBy.#ctor(System.Int32,System.Byte)">
  8162.             <summary>
  8163.             Constructs an instance of this class using the specified field
  8164.             values.
  8165.             </summary>
  8166.             <param name="iColumn">
  8167.             Column number.
  8168.             </param>
  8169.             <param name="desc">
  8170.             True for DESC.  False for ASC.
  8171.             </param>
  8172.         </member>
  8173.         <member name="F:System.Data.SQLite.SQLiteIndexOrderBy.iColumn">
  8174.             <summary>
  8175.             Column number.
  8176.             </summary>
  8177.         </member>
  8178.         <member name="F:System.Data.SQLite.SQLiteIndexOrderBy.desc">
  8179.             <summary>
  8180.             True for DESC.  False for ASC.
  8181.             </summary>
  8182.         </member>
  8183.         <member name="T:System.Data.SQLite.SQLiteIndexConstraintUsage">
  8184.             <summary>
  8185.             This class represents the native sqlite3_index_constraint_usage
  8186.             structure from the SQLite core library.
  8187.             </summary>
  8188.         </member>
  8189.         <member name="M:System.Data.SQLite.SQLiteIndexConstraintUsage.#ctor(System.Data.SQLite.UnsafeNativeMethods.sqlite3_index_constraint_usage)">
  8190.             <summary>
  8191.             Constructs an instance of this class using the specified native
  8192.             sqlite3_index_constraint_usage structure.
  8193.             </summary>
  8194.             <param name="constraintUsage">
  8195.             The native sqlite3_index_constraint_usage structure to use.
  8196.             </param>
  8197.         </member>
  8198.         <member name="M:System.Data.SQLite.SQLiteIndexConstraintUsage.#ctor(System.Int32,System.Byte)">
  8199.             <summary>
  8200.             Constructs an instance of this class using the specified field
  8201.             values.
  8202.             </summary>
  8203.             <param name="argvIndex">
  8204.             If greater than 0, constraint is part of argv to xFilter.
  8205.             </param>
  8206.             <param name="omit">
  8207.             Do not code a test for this constraint.
  8208.             </param>
  8209.         </member>
  8210.         <member name="F:System.Data.SQLite.SQLiteIndexConstraintUsage.argvIndex">
  8211.             <summary>
  8212.             If greater than 0, constraint is part of argv to xFilter.
  8213.             </summary>
  8214.         </member>
  8215.         <member name="F:System.Data.SQLite.SQLiteIndexConstraintUsage.omit">
  8216.             <summary>
  8217.             Do not code a test for this constraint.
  8218.             </summary>
  8219.         </member>
  8220.         <member name="T:System.Data.SQLite.SQLiteIndexInputs">
  8221.             <summary>
  8222.             This class represents the various inputs provided by the SQLite core
  8223.             library to the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  8224.             </summary>
  8225.         </member>
  8226.         <member name="M:System.Data.SQLite.SQLiteIndexInputs.#ctor(System.Int32,System.Int32)">
  8227.             <summary>
  8228.             Constructs an instance of this class.
  8229.             </summary>
  8230.             <param name="nConstraint">
  8231.             The number of <see cref="T:System.Data.SQLite.SQLiteIndexConstraint"/> instances to
  8232.             pre-allocate space for.
  8233.             </param>
  8234.             <param name="nOrderBy">
  8235.             The number of <see cref="T:System.Data.SQLite.SQLiteIndexOrderBy"/> instances to
  8236.             pre-allocate space for.
  8237.             </param>
  8238.         </member>
  8239.         <member name="P:System.Data.SQLite.SQLiteIndexInputs.Constraints">
  8240.             <summary>
  8241.             An array of <see cref="T:System.Data.SQLite.SQLiteIndexConstraint"/> object instances,
  8242.             each containing information supplied by the SQLite core library.
  8243.             </summary>
  8244.         </member>
  8245.         <member name="P:System.Data.SQLite.SQLiteIndexInputs.OrderBys">
  8246.             <summary>
  8247.             An array of <see cref="T:System.Data.SQLite.SQLiteIndexOrderBy"/> object instances,
  8248.             each containing information supplied by the SQLite core library.
  8249.             </summary>
  8250.         </member>
  8251.         <member name="T:System.Data.SQLite.SQLiteIndexOutputs">
  8252.             <summary>
  8253.             This class represents the various outputs provided to the SQLite core
  8254.             library by the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  8255.             </summary>
  8256.         </member>
  8257.         <member name="M:System.Data.SQLite.SQLiteIndexOutputs.#ctor(System.Int32)">
  8258.             <summary>
  8259.             Constructs an instance of this class.
  8260.             </summary>
  8261.             <param name="nConstraint">
  8262.             The number of <see cref="T:System.Data.SQLite.SQLiteIndexConstraintUsage"/> instances
  8263.             to pre-allocate space for.
  8264.             </param>
  8265.         </member>
  8266.         <member name="M:System.Data.SQLite.SQLiteIndexOutputs.CanUseEstimatedRows">
  8267.             <summary>
  8268.             Determines if the native estimatedRows field can be used, based on
  8269.             the available version of the SQLite core library.
  8270.             </summary>
  8271.             <returns>
  8272.             Non-zero if the <see cref="P:System.Data.SQLite.SQLiteIndexOutputs.EstimatedRows"/> property is supported
  8273.             by the SQLite core library.
  8274.             </returns>
  8275.         </member>
  8276.         <member name="P:System.Data.SQLite.SQLiteIndexOutputs.ConstraintUsages">
  8277.             <summary>
  8278.             An array of <see cref="T:System.Data.SQLite.SQLiteIndexConstraintUsage"/> object
  8279.             instances, each containing information to be supplied to the SQLite
  8280.             core library.
  8281.             </summary>
  8282.         </member>
  8283.         <member name="P:System.Data.SQLite.SQLiteIndexOutputs.IndexNumber">
  8284.             <summary>
  8285.             Number used to help identify the selected index.  This value will
  8286.             later be provided to the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/>
  8287.             method.
  8288.             </summary>
  8289.         </member>
  8290.         <member name="P:System.Data.SQLite.SQLiteIndexOutputs.IndexString">
  8291.             <summary>
  8292.             String used to help identify the selected index.  This value will
  8293.             later be provided to the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/>
  8294.             method.
  8295.             </summary>
  8296.         </member>
  8297.         <member name="P:System.Data.SQLite.SQLiteIndexOutputs.NeedToFreeIndexString">
  8298.             <summary>
  8299.             Non-zero if the index string must be freed by the SQLite core
  8300.             library.
  8301.             </summary>
  8302.         </member>
  8303.         <member name="P:System.Data.SQLite.SQLiteIndexOutputs.OrderByConsumed">
  8304.             <summary>
  8305.             True if output is already ordered.
  8306.             </summary>
  8307.         </member>
  8308.         <member name="P:System.Data.SQLite.SQLiteIndexOutputs.EstimatedCost">
  8309.             <summary>
  8310.             Estimated cost of using this index.  Using a null value here
  8311.             indicates that a default estimated cost value should be used.
  8312.             </summary>
  8313.         </member>
  8314.         <member name="P:System.Data.SQLite.SQLiteIndexOutputs.EstimatedRows">
  8315.             <summary>
  8316.             Estimated number of rows returned.  Using a null value here
  8317.             indicates that a default estimated rows value should be used.
  8318.             </summary>
  8319.         </member>
  8320.         <member name="T:System.Data.SQLite.SQLiteIndex">
  8321.             <summary>
  8322.             This class represents the various inputs and outputs used with the
  8323.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  8324.             </summary>
  8325.         </member>
  8326.         <member name="M:System.Data.SQLite.SQLiteIndex.#ctor(System.Int32,System.Int32)">
  8327.             <summary>
  8328.             Constructs an instance of this class.
  8329.             </summary>
  8330.             <param name="nConstraint">
  8331.             The number of <see cref="T:System.Data.SQLite.SQLiteIndexConstraint"/> (and
  8332.             <see cref="T:System.Data.SQLite.SQLiteIndexConstraintUsage"/>) instances to
  8333.             pre-allocate space for.
  8334.             </param>
  8335.             <param name="nOrderBy">
  8336.             The number of <see cref="T:System.Data.SQLite.SQLiteIndexOrderBy"/> instances to
  8337.             pre-allocate space for.
  8338.             </param>
  8339.         </member>
  8340.         <member name="M:System.Data.SQLite.SQLiteIndex.FromIntPtr(System.IntPtr,System.Data.SQLite.SQLiteIndex@)">
  8341.             <summary>
  8342.             Converts a native pointer to a native sqlite3_index_info structure
  8343.             into a new <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance.
  8344.             </summary>
  8345.             <param name="pIndex">
  8346.             The native pointer to the native sqlite3_index_info structure to
  8347.             convert.
  8348.             </param>
  8349.             <param name="index">
  8350.             Upon success, this parameter will be modified to contain the newly
  8351.             created <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance.
  8352.             </param>
  8353.         </member>
  8354.         <member name="M:System.Data.SQLite.SQLiteIndex.ToIntPtr(System.Data.SQLite.SQLiteIndex,System.IntPtr)">
  8355.             <summary>
  8356.             Populates the outputs of a pre-allocated native sqlite3_index_info
  8357.             structure using an existing <see cref="T:System.Data.SQLite.SQLiteIndex"/> object
  8358.             instance.
  8359.             </summary>
  8360.             <param name="index">
  8361.             The existing <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance containing
  8362.             the output data to use.
  8363.             </param>
  8364.             <param name="pIndex">
  8365.             The native pointer to the pre-allocated native sqlite3_index_info
  8366.             structure.
  8367.             </param>
  8368.         </member>
  8369.         <member name="P:System.Data.SQLite.SQLiteIndex.Inputs">
  8370.             <summary>
  8371.             The <see cref="T:System.Data.SQLite.SQLiteIndexInputs"/> object instance containing
  8372.             the inputs to the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/>
  8373.             method.
  8374.             </summary>
  8375.         </member>
  8376.         <member name="P:System.Data.SQLite.SQLiteIndex.Outputs">
  8377.             <summary>
  8378.             The <see cref="T:System.Data.SQLite.SQLiteIndexOutputs"/> object instance containing
  8379.             the outputs from the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/>
  8380.             method.
  8381.             </summary>
  8382.         </member>
  8383.         <member name="T:System.Data.SQLite.SQLiteVirtualTable">
  8384.             <summary>
  8385.             This class represents a managed virtual table implementation.  It is
  8386.             not sealed and should be used as the base class for any user-defined
  8387.             virtual table classes implemented in managed code.
  8388.             </summary>
  8389.         </member>
  8390.         <member name="F:System.Data.SQLite.SQLiteVirtualTable.ModuleNameIndex">
  8391.             <summary>
  8392.             The index within the array of strings provided to the
  8393.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> and
  8394.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> methods containing the
  8395.             name of the module implementing this virtual table.
  8396.             </summary>
  8397.         </member>
  8398.         <member name="F:System.Data.SQLite.SQLiteVirtualTable.DatabaseNameIndex">
  8399.             <summary>
  8400.             The index within the array of strings provided to the
  8401.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> and
  8402.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> methods containing the
  8403.             name of the database containing this virtual table.
  8404.             </summary>
  8405.         </member>
  8406.         <member name="F:System.Data.SQLite.SQLiteVirtualTable.TableNameIndex">
  8407.             <summary>
  8408.             The index within the array of strings provided to the
  8409.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> and
  8410.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> methods containing the
  8411.             name of the virtual table.
  8412.             </summary>
  8413.         </member>
  8414.         <member name="M:System.Data.SQLite.SQLiteVirtualTable.#ctor(System.String[])">
  8415.             <summary>
  8416.             Constructs an instance of this class.
  8417.             </summary>
  8418.             <param name="arguments">
  8419.             The original array of strings provided to the
  8420.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> and
  8421.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> methods.
  8422.             </param>
  8423.         </member>
  8424.         <member name="M:System.Data.SQLite.SQLiteVirtualTable.BestIndex(System.Data.SQLite.SQLiteIndex)">
  8425.             <summary>
  8426.             This method should normally be used by the
  8427.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method in order to
  8428.             perform index selection based on the constraints provided by the
  8429.             SQLite core library.
  8430.             </summary>
  8431.             <param name="index">
  8432.             The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance containing all the
  8433.             data for the inputs and outputs relating to index selection.
  8434.             </param>
  8435.             <returns>
  8436.             Non-zero upon success.
  8437.             </returns>
  8438.         </member>
  8439.         <member name="M:System.Data.SQLite.SQLiteVirtualTable.Rename(System.String)">
  8440.             <summary>
  8441.             Attempts to record the renaming of the virtual table associated
  8442.             with this object instance.
  8443.             </summary>
  8444.             <param name="name">
  8445.             The new name for the virtual table.
  8446.             </param>
  8447.             <returns>
  8448.             Non-zero upon success.
  8449.             </returns>
  8450.         </member>
  8451.         <member name="M:System.Data.SQLite.SQLiteVirtualTable.Dispose">
  8452.             <summary>
  8453.             Disposes of this object instance.
  8454.             </summary>
  8455.         </member>
  8456.         <member name="M:System.Data.SQLite.SQLiteVirtualTable.CheckDisposed">
  8457.             <summary>
  8458.             Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  8459.             instance has been disposed.
  8460.             </summary>
  8461.         </member>
  8462.         <member name="M:System.Data.SQLite.SQLiteVirtualTable.Dispose(System.Boolean)">
  8463.             <summary>
  8464.             Disposes of this object instance.
  8465.             </summary>
  8466.             <param name="disposing">
  8467.             Non-zero if this method is being called from the
  8468.             <see cref="M:System.Data.SQLite.SQLiteVirtualTable.Dispose"/> method.  Zero if this method is being called
  8469.             from the finalizer.
  8470.             </param>
  8471.         </member>
  8472.         <member name="M:System.Data.SQLite.SQLiteVirtualTable.Finalize">
  8473.             <summary>
  8474.             Finalizes this object instance.
  8475.             </summary>
  8476.         </member>
  8477.         <member name="P:System.Data.SQLite.SQLiteVirtualTable.Arguments">
  8478.             <summary>
  8479.             The original array of strings provided to the
  8480.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> and
  8481.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> methods.
  8482.             </summary>
  8483.         </member>
  8484.         <member name="P:System.Data.SQLite.SQLiteVirtualTable.ModuleName">
  8485.             <summary>
  8486.             The name of the module implementing this virtual table.
  8487.             </summary>
  8488.         </member>
  8489.         <member name="P:System.Data.SQLite.SQLiteVirtualTable.DatabaseName">
  8490.             <summary>
  8491.             The name of the database containing this virtual table.
  8492.             </summary>
  8493.         </member>
  8494.         <member name="P:System.Data.SQLite.SQLiteVirtualTable.TableName">
  8495.             <summary>
  8496.             The name of the virtual table.
  8497.             </summary>
  8498.         </member>
  8499.         <member name="P:System.Data.SQLite.SQLiteVirtualTable.Index">
  8500.             <summary>
  8501.             The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance containing all the
  8502.             data for the inputs and outputs relating to the most recent index
  8503.             selection.
  8504.             </summary>
  8505.         </member>
  8506.         <member name="P:System.Data.SQLite.SQLiteVirtualTable.NativeHandle">
  8507.             <summary>
  8508.             Returns the underlying SQLite native handle associated with this
  8509.             object instance.
  8510.             </summary>
  8511.         </member>
  8512.         <member name="T:System.Data.SQLite.SQLiteVirtualTableCursor">
  8513.             <summary>
  8514.             This class represents a managed virtual table cursor implementation.
  8515.             It is not sealed and should be used as the base class for any
  8516.             user-defined virtual table cursor classes implemented in managed code.
  8517.             </summary>
  8518.         </member>
  8519.         <member name="F:System.Data.SQLite.SQLiteVirtualTableCursor.InvalidRowIndex">
  8520.             <summary>
  8521.             This value represents an invalid integer row sequence number.
  8522.             </summary>
  8523.         </member>
  8524.         <member name="F:System.Data.SQLite.SQLiteVirtualTableCursor.rowIndex">
  8525.             <summary>
  8526.             The field holds the integer row sequence number for the current row
  8527.             pointed to by this cursor object instance.
  8528.             </summary>
  8529.         </member>
  8530.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.#ctor(System.Data.SQLite.SQLiteVirtualTable)">
  8531.             <summary>
  8532.             Constructs an instance of this class.
  8533.             </summary>
  8534.             <param name="table">
  8535.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  8536.             with this object instance.
  8537.             </param>
  8538.         </member>
  8539.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.#ctor">
  8540.             <summary>
  8541.             Constructs an instance of this class.
  8542.             </summary>
  8543.         </member>
  8544.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.TryPersistValues(System.Data.SQLite.SQLiteValue[])">
  8545.             <summary>
  8546.             Attempts to persist the specified <see cref="T:System.Data.SQLite.SQLiteValue"/> object
  8547.             instances in order to make them available after the
  8548.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method returns.
  8549.             </summary>
  8550.             <param name="values">
  8551.             The array of <see cref="T:System.Data.SQLite.SQLiteValue"/> object instances to be
  8552.             persisted.
  8553.             </param>
  8554.             <returns>
  8555.             The number of <see cref="T:System.Data.SQLite.SQLiteValue"/> object instances that were
  8556.             successfully persisted.
  8557.             </returns>
  8558.         </member>
  8559.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.Filter(System.Int32,System.String,System.Data.SQLite.SQLiteValue[])">
  8560.             <summary>
  8561.             This method should normally be used by the
  8562.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method in order to
  8563.             perform filtering of the result rows and/or to record the filtering
  8564.             criteria provided by the SQLite core library.
  8565.             </summary>
  8566.             <param name="indexNumber">
  8567.             Number used to help identify the selected index.
  8568.             </param>
  8569.             <param name="indexString">
  8570.             String used to help identify the selected index.
  8571.             </param>
  8572.             <param name="values">
  8573.             The values corresponding to each column in the selected index.
  8574.             </param>
  8575.         </member>
  8576.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.GetRowIndex">
  8577.             <summary>
  8578.             Determines the integer row sequence number for the current row.
  8579.             </summary>
  8580.             <returns>
  8581.             The integer row sequence number for the current row -OR- zero if
  8582.             it cannot be determined.
  8583.             </returns>
  8584.         </member>
  8585.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.NextRowIndex">
  8586.             <summary>
  8587.             Adjusts the integer row sequence number so that it refers to the
  8588.             next row.
  8589.             </summary>
  8590.         </member>
  8591.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.Dispose">
  8592.             <summary>
  8593.             Disposes of this object instance.
  8594.             </summary>
  8595.         </member>
  8596.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.CheckDisposed">
  8597.             <summary>
  8598.             Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  8599.             instance has been disposed.
  8600.             </summary>
  8601.         </member>
  8602.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.Dispose(System.Boolean)">
  8603.             <summary>
  8604.             Disposes of this object instance.
  8605.             </summary>
  8606.             <param name="disposing">
  8607.             Non-zero if this method is being called from the
  8608.             <see cref="M:System.Data.SQLite.SQLiteVirtualTableCursor.Dispose"/> method.  Zero if this method is being called
  8609.             from the finalizer.
  8610.             </param>
  8611.         </member>
  8612.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursor.Finalize">
  8613.             <summary>
  8614.             Finalizes this object instance.
  8615.             </summary>
  8616.         </member>
  8617.         <member name="P:System.Data.SQLite.SQLiteVirtualTableCursor.Table">
  8618.             <summary>
  8619.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  8620.             with this object instance.
  8621.             </summary>
  8622.         </member>
  8623.         <member name="P:System.Data.SQLite.SQLiteVirtualTableCursor.IndexNumber">
  8624.             <summary>
  8625.             Number used to help identify the selected index.  This value will
  8626.             be set via the <see cref="M:System.Data.SQLite.SQLiteVirtualTableCursor.Filter(System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  8627.             </summary>
  8628.         </member>
  8629.         <member name="P:System.Data.SQLite.SQLiteVirtualTableCursor.IndexString">
  8630.             <summary>
  8631.             String used to help identify the selected index.  This value will
  8632.             be set via the <see cref="M:System.Data.SQLite.SQLiteVirtualTableCursor.Filter(System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  8633.             </summary>
  8634.         </member>
  8635.         <member name="P:System.Data.SQLite.SQLiteVirtualTableCursor.Values">
  8636.             <summary>
  8637.             The values used to filter the rows returned via this cursor object
  8638.             instance.  This value will be set via the <see cref="M:System.Data.SQLite.SQLiteVirtualTableCursor.Filter(System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/>
  8639.             method.
  8640.             </summary>
  8641.         </member>
  8642.         <member name="P:System.Data.SQLite.SQLiteVirtualTableCursor.NativeHandle">
  8643.             <summary>
  8644.             Returns the underlying SQLite native handle associated with this
  8645.             object instance.
  8646.             </summary>
  8647.         </member>
  8648.         <member name="T:System.Data.SQLite.ISQLiteNativeModule">
  8649.             <summary>
  8650.             This interface represents a virtual table implementation written in
  8651.             native code.
  8652.             </summary>
  8653.         </member>
  8654.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  8655.             <summary>
  8656.             <para>
  8657.             This method is called to create a new instance of a virtual table
  8658.             in response to a CREATE VIRTUAL TABLE statement. The db parameter
  8659.             is a pointer to the SQLite database connection that is executing
  8660.             the CREATE VIRTUAL TABLE statement. The pAux argument is the copy
  8661.             of the client data pointer that was the fourth argument to the
  8662.             sqlite3_create_module() or sqlite3_create_module_v2() call that
  8663.             registered the virtual table module. The argv parameter is an
  8664.             array of argc pointers to null terminated strings. The first
  8665.             string, argv[0], is the name of the module being invoked. The
  8666.             module name is the name provided as the second argument to
  8667.             sqlite3_create_module() and as the argument to the USING clause of
  8668.             the CREATE VIRTUAL TABLE statement that is running. The second,
  8669.             argv[1], is the name of the database in which the new virtual table
  8670.             is being created. The database name is "main" for the primary
  8671.             database, or "temp" for TEMP database, or the name given at the
  8672.             end of the ATTACH statement for attached databases. The third
  8673.             element of the array, argv[2], is the name of the new virtual
  8674.             table, as specified following the TABLE keyword in the CREATE
  8675.             VIRTUAL TABLE statement. If present, the fourth and subsequent
  8676.             strings in the argv[] array report the arguments to the module name
  8677.             in the CREATE VIRTUAL TABLE statement.
  8678.             </para>
  8679.             <para>
  8680.             The job of this method is to construct the new virtual table object
  8681.             (an sqlite3_vtab object) and return a pointer to it in *ppVTab.
  8682.             </para>
  8683.             <para>
  8684.             As part of the task of creating a new sqlite3_vtab structure, this
  8685.             method must invoke sqlite3_declare_vtab() to tell the SQLite core
  8686.             about the columns and datatypes in the virtual table. The
  8687.             sqlite3_declare_vtab() API has the following prototype:
  8688.             </para>
  8689.             <para>
  8690.             <code>
  8691.             int sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable)
  8692.             </code>
  8693.             </para>
  8694.             <para>
  8695.             The first argument to sqlite3_declare_vtab() must be the same
  8696.             database connection pointer as the first parameter to this method.
  8697.             The second argument to sqlite3_declare_vtab() must a
  8698.             zero-terminated UTF-8 string that contains a well-formed CREATE
  8699.             TABLE statement that defines the columns in the virtual table and
  8700.             their data types. The name of the table in this CREATE TABLE
  8701.             statement is ignored, as are all constraints. Only the column names
  8702.             and datatypes matter. The CREATE TABLE statement string need not to
  8703.             be held in persistent memory. The string can be deallocated and/or
  8704.             reused as soon as the sqlite3_declare_vtab() routine returns.
  8705.             </para>
  8706.             </summary>
  8707.             <param name="pDb">
  8708.             The native database connection handle.
  8709.             </param>
  8710.             <param name="pAux">
  8711.             The original native pointer value that was provided to the
  8712.             sqlite3_create_module(), sqlite3_create_module_v2() or
  8713.             sqlite3_create_disposable_module() functions.
  8714.             </param>
  8715.             <param name="argc">
  8716.             The number of arguments from the CREATE VIRTUAL TABLE statement.
  8717.             </param>
  8718.             <param name="argv">
  8719.             The array of string arguments from the CREATE VIRTUAL TABLE
  8720.             statement.
  8721.             </param>
  8722.             <param name="pVtab">
  8723.             Upon success, this parameter must be modified to point to the newly
  8724.             created native sqlite3_vtab derived structure.
  8725.             </param>
  8726.             <param name="pError">
  8727.             Upon failure, this parameter must be modified to point to the error
  8728.             message, with the underlying memory having been obtained from the
  8729.             sqlite3_malloc() function.
  8730.             </param>
  8731.             <returns>
  8732.             A standard SQLite return code.
  8733.             </returns>
  8734.         </member>
  8735.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  8736.             <summary>
  8737.             <para>
  8738.             The xConnect method is very similar to xCreate. It has the same
  8739.             parameters and constructs a new sqlite3_vtab structure just like
  8740.             xCreate. And it must also call sqlite3_declare_vtab() like xCreate.
  8741.             </para>
  8742.             <para>
  8743.             The difference is that xConnect is called to establish a new
  8744.             connection to an existing virtual table whereas xCreate is called
  8745.             to create a new virtual table from scratch.
  8746.             </para>
  8747.             <para>
  8748.             The xCreate and xConnect methods are only different when the
  8749.             virtual table has some kind of backing store that must be
  8750.             initialized the first time the virtual table is created. The
  8751.             xCreate method creates and initializes the backing store. The
  8752.             xConnect method just connects to an existing backing store.
  8753.             </para>
  8754.             <para>
  8755.             As an example, consider a virtual table implementation that
  8756.             provides read-only access to existing comma-separated-value (CSV)
  8757.             files on disk. There is no backing store that needs to be created
  8758.             or initialized for such a virtual table (since the CSV files
  8759.             already exist on disk) so the xCreate and xConnect methods will be
  8760.             identical for that module.
  8761.             </para>
  8762.             <para>
  8763.             Another example is a virtual table that implements a full-text
  8764.             index. The xCreate method must create and initialize data
  8765.             structures to hold the dictionary and posting lists for that index.
  8766.             The xConnect method, on the other hand, only has to locate and use
  8767.             an existing dictionary and posting lists that were created by a
  8768.             prior xCreate call.
  8769.             </para>
  8770.             <para>
  8771.             The xConnect method must return SQLITE_OK if it is successful in
  8772.             creating the new virtual table, or SQLITE_ERROR if it is not
  8773.             successful. If not successful, the sqlite3_vtab structure must not
  8774.             be allocated. An error message may optionally be returned in *pzErr
  8775.             if unsuccessful. Space to hold the error message string must be
  8776.             allocated using an SQLite memory allocation function like
  8777.             sqlite3_malloc() or sqlite3_mprintf() as the SQLite core will
  8778.             attempt to free the space using sqlite3_free() after the error has
  8779.             been reported up to the application.
  8780.             </para>
  8781.             <para>
  8782.             The xConnect method is required for every virtual table
  8783.             implementation, though the xCreate and xConnect pointers of the
  8784.             sqlite3_module object may point to the same function the virtual
  8785.             table does not need to initialize backing store.
  8786.             </para>
  8787.             </summary>
  8788.             <param name="pDb">
  8789.             The native database connection handle.
  8790.             </param>
  8791.             <param name="pAux">
  8792.             The original native pointer value that was provided to the
  8793.             sqlite3_create_module(), sqlite3_create_module_v2() or
  8794.             sqlite3_create_disposable_module() functions.
  8795.             </param>
  8796.             <param name="argc">
  8797.             The number of arguments from the CREATE VIRTUAL TABLE statement.
  8798.             </param>
  8799.             <param name="argv">
  8800.             The array of string arguments from the CREATE VIRTUAL TABLE
  8801.             statement.
  8802.             </param>
  8803.             <param name="pVtab">
  8804.             Upon success, this parameter must be modified to point to the newly
  8805.             created native sqlite3_vtab derived structure.
  8806.             </param>
  8807.             <param name="pError">
  8808.             Upon failure, this parameter must be modified to point to the error
  8809.             message, with the underlying memory having been obtained from the
  8810.             sqlite3_malloc() function.
  8811.             </param>
  8812.             <returns>
  8813.             A standard SQLite return code.
  8814.             </returns>
  8815.         </member>
  8816.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)">
  8817.             <summary>
  8818.             <para>
  8819.             SQLite uses the xBestIndex method of a virtual table module to
  8820.             determine the best way to access the virtual table. The xBestIndex
  8821.             method has a prototype like this:
  8822.             </para>
  8823.             <code>
  8824.             int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
  8825.             </code>
  8826.             <para>
  8827.             The SQLite core communicates with the xBestIndex method by filling
  8828.             in certain fields of the sqlite3_index_info structure and passing a
  8829.             pointer to that structure into xBestIndex as the second parameter.
  8830.             The xBestIndex method fills out other fields of this structure
  8831.             which forms the reply. The sqlite3_index_info structure looks like
  8832.             this:
  8833.             </para>
  8834.             <code>
  8835.              struct sqlite3_index_info {
  8836.                /* Inputs */
  8837.                const int nConstraint;   /* Number of entries in aConstraint */
  8838.                const struct sqlite3_index_constraint {
  8839.                   int iColumn;          /* Column on left-hand side of
  8840.                                          * constraint */
  8841.                   unsigned char op;     /* Constraint operator */
  8842.                   unsigned char usable; /* True if this constraint is usable */
  8843.                   int iTermOffset;      /* Used internally - xBestIndex should
  8844.                                          * ignore */
  8845.                } *const aConstraint;    /* Table of WHERE clause constraints */
  8846.                const int nOrderBy;      /* Number of terms in the ORDER BY
  8847.                                          * clause */
  8848.                const struct sqlite3_index_orderby {
  8849.                   int iColumn;          /* Column number */
  8850.                   unsigned char desc;   /* True for DESC.  False for ASC. */
  8851.                } *const aOrderBy;       /* The ORDER BY clause */
  8852.                /* Outputs */
  8853.                struct sqlite3_index_constraint_usage {
  8854.                  int argvIndex;         /* if greater than zero, constraint is
  8855.                                          * part of argv to xFilter */
  8856.                  unsigned char omit;    /* Do not code a test for this
  8857.                                          * constraint */
  8858.                } *const aConstraintUsage;
  8859.                int idxNum;              /* Number used to identify the index */
  8860.                char *idxStr;            /* String, possibly obtained from
  8861.                                          * sqlite3_malloc() */
  8862.                int needToFreeIdxStr;    /* Free idxStr using sqlite3_free() if
  8863.                                          * true */
  8864.                int orderByConsumed;     /* True if output is already ordered */
  8865.                double estimatedCost;    /* Estimated cost of using this index */
  8866.              };
  8867.             </code>
  8868.             <para>
  8869.             In addition, there are some defined constants:
  8870.             </para>
  8871.             <code>
  8872.              #define SQLITE_INDEX_CONSTRAINT_EQ    2
  8873.              #define SQLITE_INDEX_CONSTRAINT_GT    4
  8874.              #define SQLITE_INDEX_CONSTRAINT_LE    8
  8875.              #define SQLITE_INDEX_CONSTRAINT_LT    16
  8876.              #define SQLITE_INDEX_CONSTRAINT_GE    32
  8877.              #define SQLITE_INDEX_CONSTRAINT_MATCH 64
  8878.             </code>
  8879.             <para>
  8880.             The SQLite core calls the xBestIndex method when it is compiling a
  8881.             query that involves a virtual table. In other words, SQLite calls
  8882.             this method when it is running sqlite3_prepare() or the equivalent.
  8883.             By calling this method, the SQLite core is saying to the virtual
  8884.             table that it needs to access some subset of the rows in the
  8885.             virtual table and it wants to know the most efficient way to do
  8886.             that access. The xBestIndex method replies with information that
  8887.             the SQLite core can then use to conduct an efficient search of the
  8888.             virtual table.
  8889.             </para>
  8890.             <para>
  8891.             While compiling a single SQL query, the SQLite core might call
  8892.             xBestIndex multiple times with different settings in
  8893.             sqlite3_index_info. The SQLite core will then select the
  8894.             combination that appears to give the best performance.
  8895.             </para>
  8896.             <para>
  8897.             Before calling this method, the SQLite core initializes an instance
  8898.             of the sqlite3_index_info structure with information about the
  8899.             query that it is currently trying to process. This information
  8900.             derives mainly from the WHERE clause and ORDER BY or GROUP BY
  8901.             clauses of the query, but also from any ON or USING clauses if the
  8902.             query is a join. The information that the SQLite core provides to
  8903.             the xBestIndex method is held in the part of the structure that is
  8904.             marked as "Inputs". The "Outputs" section is initialized to zero.
  8905.             </para>
  8906.             <para>
  8907.             The information in the sqlite3_index_info structure is ephemeral
  8908.             and may be overwritten or deallocated as soon as the xBestIndex
  8909.             method returns. If the xBestIndex method needs to remember any part
  8910.             of the sqlite3_index_info structure, it should make a copy. Care
  8911.             must be take to store the copy in a place where it will be
  8912.             deallocated, such as in the idxStr field with needToFreeIdxStr set
  8913.             to 1.
  8914.             </para>
  8915.             <para>
  8916.             Note that xBestIndex will always be called before xFilter, since
  8917.             the idxNum and idxStr outputs from xBestIndex are required inputs
  8918.             to xFilter. However, there is no guarantee that xFilter will be
  8919.             called following a successful xBestIndex.
  8920.             </para>
  8921.             <para>
  8922.             The xBestIndex method is required for every virtual table
  8923.             implementation.
  8924.             </para>
  8925.             <para>
  8926.             2.3.1 Inputs
  8927.             </para>
  8928.             <para>
  8929.             The main thing that the SQLite core is trying to communicate to the
  8930.             virtual table is the constraints that are available to limit the
  8931.             number of rows that need to be searched. The aConstraint[] array
  8932.             contains one entry for each constraint. There will be exactly
  8933.             nConstraint entries in that array.
  8934.             </para>
  8935.             <para>
  8936.             Each constraint will correspond to a term in the WHERE clause or in
  8937.             a USING or ON clause that is of the form
  8938.             </para>
  8939.             <code>
  8940.                 column OP EXPR
  8941.             </code>
  8942.             <para>
  8943.             Where "column" is a column in the virtual table, OP is an operator
  8944.             like "=" or "<", and EXPR is an arbitrary expression. So, for
  8945.             example, if the WHERE clause contained a term like this:
  8946.             </para>
  8947.             <code>
  8948.                      a = 5
  8949.             </code>
  8950.             <para>
  8951.             Then one of the constraints would be on the "a" column with
  8952.             operator "=" and an expression of "5". Constraints need not have a
  8953.             literal representation of the WHERE clause. The query optimizer
  8954.             might make transformations to the WHERE clause in order to extract
  8955.             as many constraints as it can. So, for example, if the WHERE clause
  8956.             contained something like this:
  8957.             </para>
  8958.             <code>
  8959.                      x BETWEEN 10 AND 100 AND 999>y
  8960.             </code>
  8961.             <para>
  8962.             The query optimizer might translate this into three separate
  8963.             constraints:
  8964.             </para>
  8965.             <code>
  8966.                      x >= 10
  8967.                      x <= 100
  8968.                      y < 999
  8969.             </code>
  8970.             <para>
  8971.             For each constraint, the aConstraint[].iColumn field indicates
  8972.             which column appears on the left-hand side of the constraint. The
  8973.             first column of the virtual table is column 0. The rowid of the
  8974.             virtual table is column -1. The aConstraint[].op field indicates
  8975.             which operator is used. The SQLITE_INDEX_CONSTRAINT_* constants map
  8976.             integer constants into operator values. Columns occur in the order
  8977.             they were defined by the call to sqlite3_declare_vtab() in the
  8978.             xCreate or xConnect method. Hidden columns are counted when
  8979.             determining the column index.
  8980.             </para>
  8981.             <para>
  8982.             The aConstraint[] array contains information about all constraints
  8983.             that apply to the virtual table. But some of the constraints might
  8984.             not be usable because of the way tables are ordered in a join. The
  8985.             xBestIndex method must therefore only consider constraints that
  8986.             have an aConstraint[].usable flag which is true.
  8987.             </para>
  8988.             <para>
  8989.             In addition to WHERE clause constraints, the SQLite core also tells
  8990.             the xBestIndex method about the ORDER BY clause. (In an aggregate
  8991.             query, the SQLite core might put in GROUP BY clause information in
  8992.             place of the ORDER BY clause information, but this fact should not
  8993.             make any difference to the xBestIndex method.) If all terms of the
  8994.             ORDER BY clause are columns in the virtual table, then nOrderBy
  8995.             will be the number of terms in the ORDER BY clause and the
  8996.             aOrderBy[] array will identify the column for each term in the
  8997.             order by clause and whether or not that column is ASC or DESC.
  8998.             </para>
  8999.             <para>
  9000.             2.3.2 Outputs
  9001.             </para>
  9002.             <para>
  9003.             Given all of the information above, the job of the xBestIndex
  9004.             method it to figure out the best way to search the virtual table.
  9005.             </para>
  9006.             <para>
  9007.             The xBestIndex method fills the idxNum and idxStr fields with
  9008.             information that communicates an indexing strategy to the xFilter
  9009.             method. The information in idxNum and idxStr is arbitrary as far as
  9010.             the SQLite core is concerned. The SQLite core just copies the
  9011.             information through to the xFilter method. Any desired meaning can
  9012.             be assigned to idxNum and idxStr as long as xBestIndex and xFilter
  9013.             agree on what that meaning is.
  9014.             </para>
  9015.             <para>
  9016.             The idxStr value may be a string obtained from an SQLite memory
  9017.             allocation function such as sqlite3_mprintf(). If this is the case,
  9018.             then the needToFreeIdxStr flag must be set to true so that the
  9019.             SQLite core will know to call sqlite3_free() on that string when it
  9020.             has finished with it, and thus avoid a memory leak.
  9021.             </para>
  9022.             <para>
  9023.             If the virtual table will output rows in the order specified by the
  9024.             ORDER BY clause, then the orderByConsumed flag may be set to true.
  9025.             If the output is not automatically in the correct order then
  9026.             orderByConsumed must be left in its default false setting. This
  9027.             will indicate to the SQLite core that it will need to do a separate
  9028.             sorting pass over the data after it comes out of the virtual table.
  9029.             </para>
  9030.             <para>
  9031.             The estimatedCost field should be set to the estimated number of
  9032.             disk access operations required to execute this query against the
  9033.             virtual table. The SQLite core will often call xBestIndex multiple
  9034.             times with different constraints, obtain multiple cost estimates,
  9035.             then choose the query plan that gives the lowest estimate.
  9036.             </para>
  9037.             <para>
  9038.             The aConstraintUsage[] array contains one element for each of the
  9039.             nConstraint constraints in the inputs section of the
  9040.             sqlite3_index_info structure. The aConstraintUsage[] array is used
  9041.             by xBestIndex to tell the core how it is using the constraints.
  9042.             </para>
  9043.             <para>
  9044.             The xBestIndex method may set aConstraintUsage[].argvIndex entries
  9045.             to values greater than one. Exactly one entry should be set to 1,
  9046.             another to 2, another to 3, and so forth up to as many or as few as
  9047.             the xBestIndex method wants. The EXPR of the corresponding
  9048.             constraints will then be passed in as the argv[] parameters to
  9049.             xFilter.
  9050.             </para>
  9051.             <para>
  9052.             For example, if the aConstraint[3].argvIndex is set to 1, then when
  9053.             xFilter is called, the argv[0] passed to xFilter will have the EXPR
  9054.             value of the aConstraint[3] constraint.
  9055.             </para>
  9056.             <para>
  9057.             By default, the SQLite core double checks all constraints on each
  9058.             row of the virtual table that it receives. If such a check is
  9059.             redundant, the xBestFilter method can suppress that double-check by
  9060.             setting aConstraintUsage[].omit.
  9061.             </para>
  9062.             </summary>
  9063.             <param name="pVtab">
  9064.             The native pointer to the sqlite3_vtab derived structure.
  9065.             </param>
  9066.             <param name="pIndex">
  9067.             The native pointer to the sqlite3_index_info structure.
  9068.             </param>
  9069.             <returns>
  9070.             A standard SQLite return code.
  9071.             </returns>
  9072.         </member>
  9073.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)">
  9074.             <summary>
  9075.             <para>
  9076.             This method releases a connection to a virtual table. Only the
  9077.             sqlite3_vtab object is destroyed. The virtual table is not
  9078.             destroyed and any backing store associated with the virtual table
  9079.             persists. This method undoes the work of xConnect.
  9080.             </para>
  9081.             <para>
  9082.             This method is a destructor for a connection to the virtual table.
  9083.             Contrast this method with xDestroy. The xDestroy is a destructor
  9084.             for the entire virtual table.
  9085.             </para>
  9086.             <para>
  9087.             The xDisconnect method is required for every virtual table
  9088.             implementation, though it is acceptable for the xDisconnect and
  9089.             xDestroy methods to be the same function if that makes sense for
  9090.             the particular virtual table.
  9091.             </para>
  9092.             </summary>
  9093.             <param name="pVtab">
  9094.             The native pointer to the sqlite3_vtab derived structure.
  9095.             </param>
  9096.             <returns>
  9097.             A standard SQLite return code.
  9098.             </returns>
  9099.         </member>
  9100.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)">
  9101.             <summary>
  9102.             <para>
  9103.             This method releases a connection to a virtual table, just like the
  9104.             xDisconnect method, and it also destroys the underlying table
  9105.             implementation. This method undoes the work of xCreate.
  9106.             </para>
  9107.             <para>
  9108.             The xDisconnect method is called whenever a database connection
  9109.             that uses a virtual table is closed. The xDestroy method is only
  9110.             called when a DROP TABLE statement is executed against the virtual
  9111.             table.
  9112.             </para>
  9113.             <para>
  9114.             The xDestroy method is required for every virtual table
  9115.             implementation, though it is acceptable for the xDisconnect and
  9116.             xDestroy methods to be the same function if that makes sense for
  9117.             the particular virtual table.
  9118.             </para>
  9119.             </summary>
  9120.             <param name="pVtab">
  9121.             The native pointer to the sqlite3_vtab derived structure.
  9122.             </param>
  9123.             <returns>
  9124.             A standard SQLite return code.
  9125.             </returns>
  9126.         </member>
  9127.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)">
  9128.             <summary>
  9129.             <para>
  9130.             The xOpen method creates a new cursor used for accessing (read
  9131.             and/or writing) a virtual table. A successful invocation of this
  9132.             method will allocate the memory for the sqlite3_vtab_cursor (or a
  9133.             subclass), initialize the new object, and make *ppCursor point to
  9134.             the new object. The successful call then returns SQLITE_OK.
  9135.             </para>
  9136.             <para>
  9137.             For every successful call to this method, the SQLite core will
  9138.             later invoke the xClose method to destroy the allocated cursor.
  9139.             </para>
  9140.             <para>
  9141.             The xOpen method need not initialize the pVtab field of the
  9142.             sqlite3_vtab_cursor structure. The SQLite core will take care of
  9143.             that chore automatically.
  9144.             </para>
  9145.             <para>
  9146.             A virtual table implementation must be able to support an arbitrary
  9147.             number of simultaneously open cursors.
  9148.             </para>
  9149.             <para>
  9150.             When initially opened, the cursor is in an undefined state. The
  9151.             SQLite core will invoke the xFilter method on the cursor prior to
  9152.             any attempt to position or read from the cursor.
  9153.             </para>
  9154.             <para>
  9155.             The xOpen method is required for every virtual table
  9156.             implementation.
  9157.             </para>
  9158.             </summary>
  9159.             <param name="pVtab">
  9160.             The native pointer to the sqlite3_vtab derived structure.
  9161.             </param>
  9162.             <param name="pCursor">
  9163.             Upon success, this parameter must be modified to point to the newly
  9164.             created native sqlite3_vtab_cursor derived structure.
  9165.             </param>
  9166.             <returns>
  9167.             A standard SQLite return code.
  9168.             </returns>
  9169.         </member>
  9170.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)">
  9171.             <summary>
  9172.             <para>
  9173.             The xClose method closes a cursor previously opened by xOpen. The
  9174.             SQLite core will always call xClose once for each cursor opened
  9175.             using xOpen.
  9176.             </para>
  9177.             <para>
  9178.             This method must release all resources allocated by the
  9179.             corresponding xOpen call. The routine will not be called again even
  9180.             if it returns an error. The SQLite core will not use the
  9181.             sqlite3_vtab_cursor again after it has been closed.
  9182.             </para>
  9183.             <para>
  9184.             The xClose method is required for every virtual table
  9185.             implementation.
  9186.             </para>
  9187.             </summary>
  9188.             <param name="pCursor">
  9189.             The native pointer to the sqlite3_vtab_cursor derived structure.
  9190.             </param>
  9191.             <returns>
  9192.             A standard SQLite return code.
  9193.             </returns>
  9194.         </member>
  9195.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)">
  9196.             <summary>
  9197.             <para>
  9198.             This method begins a search of a virtual table. The first argument
  9199.             is a cursor opened by xOpen. The next two argument define a
  9200.             particular search index previously chosen by xBestIndex. The
  9201.             specific meanings of idxNum and idxStr are unimportant as long as
  9202.             xFilter and xBestIndex agree on what that meaning is.
  9203.             </para>
  9204.             <para>
  9205.             The xBestIndex function may have requested the values of certain
  9206.             expressions using the aConstraintUsage[].argvIndex values of the
  9207.             sqlite3_index_info structure. Those values are passed to xFilter
  9208.             using the argc and argv parameters.
  9209.             </para>
  9210.             <para>
  9211.             If the virtual table contains one or more rows that match the
  9212.             search criteria, then the cursor must be left point at the first
  9213.             row. Subsequent calls to xEof must return false (zero). If there
  9214.             are no rows match, then the cursor must be left in a state that
  9215.             will cause the xEof to return true (non-zero). The SQLite engine
  9216.             will use the xColumn and xRowid methods to access that row content.
  9217.             The xNext method will be used to advance to the next row.
  9218.             </para>
  9219.             <para>
  9220.             This method must return SQLITE_OK if successful, or an sqlite error
  9221.             code if an error occurs.
  9222.             </para>
  9223.             <para>
  9224.             The xFilter method is required for every virtual table
  9225.             implementation.
  9226.             </para>
  9227.             </summary>
  9228.             <param name="pCursor">
  9229.             The native pointer to the sqlite3_vtab_cursor derived structure.
  9230.             </param>
  9231.             <param name="idxNum">
  9232.             Number used to help identify the selected index.
  9233.             </param>
  9234.             <param name="idxStr">
  9235.             The native pointer to the UTF-8 encoded string containing the
  9236.             string used to help identify the selected index.
  9237.             </param>
  9238.             <param name="argc">
  9239.             The number of native pointers to sqlite3_value structures specified
  9240.             in <paramref name="argv" />.
  9241.             </param>
  9242.             <param name="argv">
  9243.             An array of native pointers to sqlite3_value structures containing
  9244.             filtering criteria for the selected index.
  9245.             </param>
  9246.             <returns>
  9247.             A standard SQLite return code.
  9248.             </returns>
  9249.         </member>
  9250.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)">
  9251.             <summary>
  9252.             <para>
  9253.             The xNext method advances a virtual table cursor to the next row of
  9254.             a result set initiated by xFilter. If the cursor is already
  9255.             pointing at the last row when this routine is called, then the
  9256.             cursor no longer points to valid data and a subsequent call to the
  9257.             xEof method must return true (non-zero). If the cursor is
  9258.             successfully advanced to another row of content, then subsequent
  9259.             calls to xEof must return false (zero).
  9260.             </para>
  9261.             <para>
  9262.             This method must return SQLITE_OK if successful, or an sqlite error
  9263.             code if an error occurs.
  9264.             </para>
  9265.             <para>
  9266.             The xNext method is required for every virtual table
  9267.             implementation.
  9268.             </para>
  9269.             </summary>
  9270.             <param name="pCursor">
  9271.             The native pointer to the sqlite3_vtab_cursor derived structure.
  9272.             </param>
  9273.             <returns>
  9274.             A standard SQLite return code.
  9275.             </returns>
  9276.         </member>
  9277.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)">
  9278.             <summary>
  9279.             <para>
  9280.             The xEof method must return false (zero) if the specified cursor
  9281.             currently points to a valid row of data, or true (non-zero)
  9282.             otherwise. This method is called by the SQL engine immediately
  9283.             after each xFilter and xNext invocation.
  9284.             </para>
  9285.             <para>
  9286.             The xEof method is required for every virtual table implementation.
  9287.             </para>
  9288.             </summary>
  9289.             <param name="pCursor">
  9290.             The native pointer to the sqlite3_vtab_cursor derived structure.
  9291.             </param>
  9292.             <returns>
  9293.             Non-zero if no more rows are available; zero otherwise.
  9294.             </returns>
  9295.         </member>
  9296.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)">
  9297.             <summary>
  9298.             <para>
  9299.             The SQLite core invokes this method in order to find the value for
  9300.             the N-th column of the current row. N is zero-based so the first
  9301.             column is numbered 0. The xColumn method may return its result back
  9302.             to SQLite using one of the following interface:
  9303.             </para>
  9304.             <code>
  9305.                 sqlite3_result_blob()
  9306.                 sqlite3_result_double()
  9307.                 sqlite3_result_int()
  9308.                 sqlite3_result_int64()
  9309.                 sqlite3_result_null()
  9310.                 sqlite3_result_text()
  9311.                 sqlite3_result_text16()
  9312.                 sqlite3_result_text16le()
  9313.                 sqlite3_result_text16be()
  9314.                 sqlite3_result_zeroblob()
  9315.             </code>
  9316.             <para>
  9317.             If the xColumn method implementation calls none of the functions
  9318.             above, then the value of the column defaults to an SQL NULL.
  9319.             </para>
  9320.             <para>
  9321.             To raise an error, the xColumn method should use one of the
  9322.             result_text() methods to set the error message text, then return an
  9323.             appropriate error code. The xColumn method must return SQLITE_OK on
  9324.             success.
  9325.             </para>
  9326.             <para>
  9327.             The xColumn method is required for every virtual table
  9328.             implementation.
  9329.             </para>
  9330.             </summary>
  9331.             <param name="pCursor">
  9332.             The native pointer to the sqlite3_vtab_cursor derived structure.
  9333.             </param>
  9334.             <param name="pContext">
  9335.             The native pointer to the sqlite3_context structure to be used
  9336.             for returning the specified column value to the SQLite core
  9337.             library.
  9338.             </param>
  9339.             <param name="index">
  9340.             The zero-based index corresponding to the column containing the
  9341.             value to be returned.
  9342.             </param>
  9343.             <returns>
  9344.             A standard SQLite return code.
  9345.             </returns>
  9346.         </member>
  9347.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)">
  9348.             <summary>
  9349.             <para>
  9350.             A successful invocation of this method will cause *pRowid to be
  9351.             filled with the rowid of row that the virtual table cursor pCur is
  9352.             currently pointing at. This method returns SQLITE_OK on success. It
  9353.             returns an appropriate error code on failure.
  9354.             </para>
  9355.             <para>
  9356.             The xRowid method is required for every virtual table
  9357.             implementation.
  9358.             </para>
  9359.             </summary>
  9360.             <param name="pCursor">
  9361.             The native pointer to the sqlite3_vtab_cursor derived structure.
  9362.             </param>
  9363.             <param name="rowId">
  9364.             Upon success, this parameter must be modified to contain the unique
  9365.             integer row identifier for the current row for the specified cursor.
  9366.             </param>
  9367.             <returns>
  9368.             A standard SQLite return code.
  9369.             </returns>
  9370.         </member>
  9371.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)">
  9372.             <summary>
  9373.             <para>
  9374.             All changes to a virtual table are made using the xUpdate method.
  9375.             This one method can be used to insert, delete, or update.
  9376.             </para>
  9377.             <para>
  9378.             The argc parameter specifies the number of entries in the argv
  9379.             array. The value of argc will be 1 for a pure delete operation or
  9380.             N+2 for an insert or replace or update where N is the number of
  9381.             columns in the table. In the previous sentence, N includes any
  9382.             hidden columns.
  9383.             </para>
  9384.             <para>
  9385.             Every argv entry will have a non-NULL value in C but may contain
  9386.             the SQL value NULL. In other words, it is always true that
  9387.             argv[i]!=0 for i between 0 and argc-1. However, it might be the
  9388.             case that sqlite3_value_type(argv[i])==SQLITE_NULL.
  9389.             </para>
  9390.             <para>
  9391.             The argv[0] parameter is the rowid of a row in the virtual table
  9392.             to be deleted. If argv[0] is an SQL NULL, then no deletion occurs.
  9393.             </para>
  9394.             <para>
  9395.             The argv[1] parameter is the rowid of a new row to be inserted into
  9396.             the virtual table. If argv[1] is an SQL NULL, then the
  9397.             implementation must choose a rowid for the newly inserted row.
  9398.             Subsequent argv[] entries contain values of the columns of the
  9399.             virtual table, in the order that the columns were declared. The
  9400.             number of columns will match the table declaration that the
  9401.             xConnect or xCreate method made using the sqlite3_declare_vtab()
  9402.             call. All hidden columns are included.
  9403.             </para>
  9404.             <para>
  9405.             When doing an insert without a rowid (argc>1, argv[1] is an SQL
  9406.             NULL), the implementation must set *pRowid to the rowid of the
  9407.             newly inserted row; this will become the value returned by the
  9408.             sqlite3_last_insert_rowid() function. Setting this value in all the
  9409.             other cases is a harmless no-op; the SQLite engine ignores the
  9410.             *pRowid return value if argc==1 or argv[1] is not an SQL NULL.
  9411.             </para>
  9412.             <para>
  9413.             Each call to xUpdate will fall into one of cases shown below. Note
  9414.             that references to argv[i] mean the SQL value held within the
  9415.             argv[i] object, not the argv[i] object itself.
  9416.             </para>
  9417.             <code>
  9418.                 argc = 1
  9419.             </code>
  9420.             <para>
  9421.                     The single row with rowid equal to argv[0] is deleted. No
  9422.                     insert occurs.
  9423.             </para>
  9424.             <code>
  9425.                 argc > 1
  9426.                 argv[0] = NULL
  9427.             </code>
  9428.             <para>
  9429.                     A new row is inserted with a rowid argv[1] and column
  9430.                     values in argv[2] and following. If argv[1] is an SQL NULL,
  9431.                     the a new unique rowid is generated automatically.
  9432.             </para>
  9433.             <code>
  9434.                 argc > 1
  9435.                 argv[0] ? NULL
  9436.                 argv[0] = argv[1]
  9437.             </code>
  9438.             <para>
  9439.                     The row with rowid argv[0] is updated with new values in
  9440.                     argv[2] and following parameters.
  9441.             </para>
  9442.             <code>
  9443.                 argc > 1
  9444.                 argv[0] ? NULL
  9445.                 argv[0] ? argv[1]
  9446.             </code>
  9447.             <para>
  9448.                     The row with rowid argv[0] is updated with rowid argv[1]
  9449.                     and new values in argv[2] and following parameters. This
  9450.                     will occur when an SQL statement updates a rowid, as in
  9451.                     the statement:
  9452.             </para>
  9453.             <code>
  9454.                         UPDATE table SET rowid=rowid+1 WHERE ...;
  9455.             </code>
  9456.             <para>
  9457.             The xUpdate method must return SQLITE_OK if and only if it is
  9458.             successful. If a failure occurs, the xUpdate must return an
  9459.             appropriate error code. On a failure, the pVTab->zErrMsg element
  9460.             may optionally be replaced with error message text stored in memory
  9461.             allocated from SQLite using functions such as sqlite3_mprintf() or
  9462.             sqlite3_malloc().
  9463.             </para>
  9464.             <para>
  9465.             If the xUpdate method violates some constraint of the virtual table
  9466.             (including, but not limited to, attempting to store a value of the
  9467.             wrong datatype, attempting to store a value that is too large or
  9468.             too small, or attempting to change a read-only value) then the
  9469.             xUpdate must fail with an appropriate error code.
  9470.             </para>
  9471.             <para>
  9472.             There might be one or more sqlite3_vtab_cursor objects open and in
  9473.             use on the virtual table instance and perhaps even on the row of
  9474.             the virtual table when the xUpdate method is invoked. The
  9475.             implementation of xUpdate must be prepared for attempts to delete
  9476.             or modify rows of the table out from other existing cursors. If the
  9477.             virtual table cannot accommodate such changes, the xUpdate method
  9478.             must return an error code.
  9479.             </para>
  9480.             <para>
  9481.             The xUpdate method is optional. If the xUpdate pointer in the
  9482.             sqlite3_module for a virtual table is a NULL pointer, then the
  9483.             virtual table is read-only.
  9484.             </para>
  9485.             </summary>
  9486.             <param name="pVtab">
  9487.             The native pointer to the sqlite3_vtab derived structure.
  9488.             </param>
  9489.             <param name="argc">
  9490.             The number of new or modified column values contained in
  9491.             <paramref name="argv" />.
  9492.             </param>
  9493.             <param name="argv">
  9494.             The array of native pointers to sqlite3_value structures containing
  9495.             the new or modified column values, if any.
  9496.             </param>
  9497.             <param name="rowId">
  9498.             Upon success, this parameter must be modified to contain the unique
  9499.             integer row identifier for the row that was inserted, if any.
  9500.             </param>
  9501.             <returns>
  9502.             A standard SQLite return code.
  9503.             </returns>
  9504.         </member>
  9505.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)">
  9506.             <summary>
  9507.             <para>
  9508.             This method begins a transaction on a virtual table. This is method
  9509.             is optional. The xBegin pointer of sqlite3_module may be NULL.
  9510.             </para>
  9511.             <para>
  9512.             This method is always followed by one call to either the xCommit or
  9513.             xRollback method. Virtual table transactions do not nest, so the
  9514.             xBegin method will not be invoked more than once on a single
  9515.             virtual table without an intervening call to either xCommit or
  9516.             xRollback. Multiple calls to other methods can and likely will
  9517.             occur in between the xBegin and the corresponding xCommit or
  9518.             xRollback.
  9519.             </para>
  9520.             </summary>
  9521.             <param name="pVtab">
  9522.             The native pointer to the sqlite3_vtab derived structure.
  9523.             </param>
  9524.             <returns>
  9525.             A standard SQLite return code.
  9526.             </returns>
  9527.         </member>
  9528.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)">
  9529.             <summary>
  9530.             <para>
  9531.             This method signals the start of a two-phase commit on a virtual
  9532.             table. This is method is optional. The xSync pointer of
  9533.             sqlite3_module may be NULL.
  9534.             </para>
  9535.             <para>
  9536.             This method is only invoked after call to the xBegin method and
  9537.             prior to an xCommit or xRollback. In order to implement two-phase
  9538.             commit, the xSync method on all virtual tables is invoked prior to
  9539.             invoking the xCommit method on any virtual table. If any of the
  9540.             xSync methods fail, the entire transaction is rolled back.
  9541.             </para>
  9542.             </summary>
  9543.             <param name="pVtab">
  9544.             The native pointer to the sqlite3_vtab derived structure.
  9545.             </param>
  9546.             <returns>
  9547.             A standard SQLite return code.
  9548.             </returns>
  9549.         </member>
  9550.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)">
  9551.             <summary>
  9552.             <para>
  9553.             This method causes a virtual table transaction to commit. This is
  9554.             method is optional. The xCommit pointer of sqlite3_module may be
  9555.             NULL.
  9556.             </para>
  9557.             <para>
  9558.             A call to this method always follows a prior call to xBegin and
  9559.             xSync.
  9560.             </para>
  9561.             </summary>
  9562.             <param name="pVtab">
  9563.             The native pointer to the sqlite3_vtab derived structure.
  9564.             </param>
  9565.             <returns>
  9566.             A standard SQLite return code.
  9567.             </returns>
  9568.         </member>
  9569.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)">
  9570.             <summary>
  9571.             <para>
  9572.             This method causes a virtual table transaction to rollback. This is
  9573.             method is optional. The xRollback pointer of sqlite3_module may be
  9574.             NULL.
  9575.             </para>
  9576.             <para>
  9577.             A call to this method always follows a prior call to xBegin.
  9578.             </para>
  9579.             </summary>
  9580.             <param name="pVtab">
  9581.             The native pointer to the sqlite3_vtab derived structure.
  9582.             </param>
  9583.             <returns>
  9584.             A standard SQLite return code.
  9585.             </returns>
  9586.         </member>
  9587.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)">
  9588.             <summary>
  9589.             <para>
  9590.             This method provides notification that the virtual table
  9591.             implementation that the virtual table will be given a new name. If
  9592.             this method returns SQLITE_OK then SQLite renames the table. If
  9593.             this method returns an error code then the renaming is prevented.
  9594.             </para>
  9595.             <para>
  9596.             The xRename method is required for every virtual table
  9597.             implementation.
  9598.             </para>
  9599.             </summary>
  9600.             <param name="pVtab">
  9601.             The native pointer to the sqlite3_vtab derived structure.
  9602.             </param>
  9603.             <param name="nArg">
  9604.             The number of arguments to the function being sought.
  9605.             </param>
  9606.             <param name="zName">
  9607.             The name of the function being sought.
  9608.             </param>
  9609.             <param name="callback">
  9610.             Upon success, this parameter must be modified to contain the
  9611.             delegate responsible for implementing the specified function.
  9612.             </param>
  9613.             <param name="pClientData">
  9614.             Upon success, this parameter must be modified to contain the
  9615.             native user-data pointer associated with
  9616.             <paramref name="callback" />.
  9617.             </param>
  9618.             <returns>
  9619.             Non-zero if the specified function was found; zero otherwise.
  9620.             </returns>
  9621.         </member>
  9622.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)">
  9623.             <summary>
  9624.             <para>
  9625.             This method provides notification that the virtual table
  9626.             implementation that the virtual table will be given a new name. If
  9627.             this method returns SQLITE_OK then SQLite renames the table. If
  9628.             this method returns an error code then the renaming is prevented.
  9629.             </para>
  9630.             <para>
  9631.             The xRename method is required for every virtual table
  9632.             implementation.
  9633.             </para>
  9634.             </summary>
  9635.             <param name="pVtab">
  9636.             The native pointer to the sqlite3_vtab derived structure.
  9637.             </param>
  9638.             <param name="zNew">
  9639.             The native pointer to the UTF-8 encoded string containing the new
  9640.             name for the virtual table.
  9641.             </param>
  9642.             <returns>
  9643.             A standard SQLite return code.
  9644.             </returns>
  9645.         </member>
  9646.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)">
  9647.             <summary>
  9648.             <para>
  9649.             These methods provide the virtual table implementation an
  9650.             opportunity to implement nested transactions. They are always
  9651.             optional and will only be called in SQLite version 3.7.7 and later.
  9652.             </para>
  9653.             <para>
  9654.             When xSavepoint(X,N) is invoked, that is a signal to the virtual
  9655.             table X that it should save its current state as savepoint N. A
  9656.             subsequent call to xRollbackTo(X,R) means that the state of the
  9657.             virtual table should return to what it was when xSavepoint(X,R) was
  9658.             last called. The call to xRollbackTo(X,R) will invalidate all
  9659.             savepoints with N>R; none of the invalided savepoints will be
  9660.             rolled back or released without first being reinitialized by a call
  9661.             to xSavepoint(). A call to xRelease(X,M) invalidates all savepoints
  9662.             where N>=M.
  9663.             </para>
  9664.             <para>
  9665.             None of the xSavepoint(), xRelease(), or xRollbackTo() methods will
  9666.             ever be called except in between calls to xBegin() and either
  9667.             xCommit() or xRollback().
  9668.             </para>
  9669.             </summary>
  9670.             <param name="pVtab">
  9671.             The native pointer to the sqlite3_vtab derived structure.
  9672.             </param>
  9673.             <param name="iSavepoint">
  9674.             This is an integer identifier under which the the current state of
  9675.             the virtual table should be saved.
  9676.             </param>
  9677.             <returns>
  9678.             A standard SQLite return code.
  9679.             </returns>
  9680.         </member>
  9681.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)">
  9682.             <summary>
  9683.             <para>
  9684.             These methods provide the virtual table implementation an
  9685.             opportunity to implement nested transactions. They are always
  9686.             optional and will only be called in SQLite version 3.7.7 and later.
  9687.             </para>
  9688.             <para>
  9689.             When xSavepoint(X,N) is invoked, that is a signal to the virtual
  9690.             table X that it should save its current state as savepoint N. A
  9691.             subsequent call to xRollbackTo(X,R) means that the state of the
  9692.             virtual table should return to what it was when xSavepoint(X,R) was
  9693.             last called. The call to xRollbackTo(X,R) will invalidate all
  9694.             savepoints with N>R; none of the invalided savepoints will be
  9695.             rolled back or released without first being reinitialized by a call
  9696.             to xSavepoint(). A call to xRelease(X,M) invalidates all savepoints
  9697.             where N>=M.
  9698.             </para>
  9699.             <para>
  9700.             None of the xSavepoint(), xRelease(), or xRollbackTo() methods will
  9701.             ever be called except in between calls to xBegin() and either
  9702.             xCommit() or xRollback().
  9703.             </para>
  9704.             </summary>
  9705.             <param name="pVtab">
  9706.             The native pointer to the sqlite3_vtab derived structure.
  9707.             </param>
  9708.             <param name="iSavepoint">
  9709.             This is an integer used to indicate that any saved states with an
  9710.             identifier greater than or equal to this should be deleted by the
  9711.             virtual table.
  9712.             </param>
  9713.             <returns>
  9714.             A standard SQLite return code.
  9715.             </returns>
  9716.         </member>
  9717.         <member name="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)">
  9718.             <summary>
  9719.             <para>
  9720.             These methods provide the virtual table implementation an
  9721.             opportunity to implement nested transactions. They are always
  9722.             optional and will only be called in SQLite version 3.7.7 and later.
  9723.             </para>
  9724.             <para>
  9725.             When xSavepoint(X,N) is invoked, that is a signal to the virtual
  9726.             table X that it should save its current state as savepoint N. A
  9727.             subsequent call to xRollbackTo(X,R) means that the state of the
  9728.             virtual table should return to what it was when xSavepoint(X,R) was
  9729.             last called. The call to xRollbackTo(X,R) will invalidate all
  9730.             savepoints with N>R; none of the invalided savepoints will be
  9731.             rolled back or released without first being reinitialized by a call
  9732.             to xSavepoint(). A call to xRelease(X,M) invalidates all savepoints
  9733.             where N>=M.
  9734.             </para>
  9735.             <para>
  9736.             None of the xSavepoint(), xRelease(), or xRollbackTo() methods will
  9737.             ever be called except in between calls to xBegin() and either
  9738.             xCommit() or xRollback().
  9739.             </para>
  9740.             </summary>
  9741.             <param name="pVtab">
  9742.             The native pointer to the sqlite3_vtab derived structure.
  9743.             </param>
  9744.             <param name="iSavepoint">
  9745.             This is an integer identifier used to specify a specific saved
  9746.             state for the virtual table for it to restore itself back to, which
  9747.             should also have the effect of deleting all saved states with an
  9748.             integer identifier greater than this one.
  9749.             </param>
  9750.             <returns>
  9751.             A standard SQLite return code.
  9752.             </returns>
  9753.         </member>
  9754.         <member name="T:System.Data.SQLite.ISQLiteManagedModule">
  9755.             <summary>
  9756.             This interface represents a virtual table implementation written in
  9757.             managed code.
  9758.             </summary>
  9759.         </member>
  9760.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  9761.             <summary>
  9762.             This method is called in response to the
  9763.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  9764.             </summary>
  9765.             <param name="connection">
  9766.             The <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance associated with
  9767.             the virtual table.
  9768.             </param>
  9769.             <param name="pClientData">
  9770.             The native user-data pointer associated with this module, as it was
  9771.             provided to the SQLite core library when the native module instance
  9772.             was created.
  9773.             </param>
  9774.             <param name="arguments">
  9775.             The module name, database name, virtual table name, and all other
  9776.             arguments passed to the CREATE VIRTUAL TABLE statement.
  9777.             </param>
  9778.             <param name="table">
  9779.             Upon success, this parameter must be modified to contain the
  9780.             <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated with
  9781.             the virtual table.
  9782.             </param>
  9783.             <param name="error">
  9784.             Upon failure, this parameter must be modified to contain an error
  9785.             message.
  9786.             </param>
  9787.             <returns>
  9788.             A standard SQLite return code.
  9789.             </returns>
  9790.         </member>
  9791.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  9792.             <summary>
  9793.             This method is called in response to the
  9794.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  9795.             </summary>
  9796.             <param name="connection">
  9797.             The <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance associated with
  9798.             the virtual table.
  9799.             </param>
  9800.             <param name="pClientData">
  9801.             The native user-data pointer associated with this module, as it was
  9802.             provided to the SQLite core library when the native module instance
  9803.             was created.
  9804.             </param>
  9805.             <param name="arguments">
  9806.             The module name, database name, virtual table name, and all other
  9807.             arguments passed to the CREATE VIRTUAL TABLE statement.
  9808.             </param>
  9809.             <param name="table">
  9810.             Upon success, this parameter must be modified to contain the
  9811.             <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated with
  9812.             the virtual table.
  9813.             </param>
  9814.             <param name="error">
  9815.             Upon failure, this parameter must be modified to contain an error
  9816.             message.
  9817.             </param>
  9818.             <returns>
  9819.             A standard SQLite return code.
  9820.             </returns>
  9821.         </member>
  9822.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)">
  9823.             <summary>
  9824.             This method is called in response to the
  9825.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  9826.             </summary>
  9827.             <param name="table">
  9828.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  9829.             with this virtual table.
  9830.             </param>
  9831.             <param name="index">
  9832.             The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance containing all the
  9833.             data for the inputs and outputs relating to index selection.
  9834.             </param>
  9835.             <returns>
  9836.             A standard SQLite return code.
  9837.             </returns>
  9838.         </member>
  9839.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)">
  9840.             <summary>
  9841.             This method is called in response to the
  9842.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  9843.             </summary>
  9844.             <param name="table">
  9845.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  9846.             with this virtual table.
  9847.             </param>
  9848.             <returns>
  9849.             A standard SQLite return code.
  9850.             </returns>
  9851.         </member>
  9852.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)">
  9853.             <summary>
  9854.             This method is called in response to the
  9855.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  9856.             </summary>
  9857.             <param name="table">
  9858.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  9859.             with this virtual table.
  9860.             </param>
  9861.             <returns>
  9862.             A standard SQLite return code.
  9863.             </returns>
  9864.         </member>
  9865.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)">
  9866.             <summary>
  9867.             This method is called in response to the
  9868.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  9869.             </summary>
  9870.             <param name="table">
  9871.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  9872.             with this virtual table.
  9873.             </param>
  9874.             <param name="cursor">
  9875.             Upon success, this parameter must be modified to contain the
  9876.             <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance associated
  9877.             with the newly opened virtual table cursor.
  9878.             </param>
  9879.             <returns>
  9880.             A standard SQLite return code.
  9881.             </returns>
  9882.         </member>
  9883.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)">
  9884.             <summary>
  9885.             This method is called in response to the
  9886.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  9887.             </summary>
  9888.             <param name="cursor">
  9889.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  9890.             associated with the previously opened virtual table cursor to be
  9891.             used.
  9892.             </param>
  9893.             <returns>
  9894.             A standard SQLite return code.
  9895.             </returns>
  9896.         </member>
  9897.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])">
  9898.             <summary>
  9899.             This method is called in response to the
  9900.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  9901.             </summary>
  9902.             <param name="cursor">
  9903.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  9904.             associated with the previously opened virtual table cursor to be
  9905.             used.
  9906.             </param>
  9907.             <param name="indexNumber">
  9908.             Number used to help identify the selected index.
  9909.             </param>
  9910.             <param name="indexString">
  9911.             String used to help identify the selected index.
  9912.             </param>
  9913.             <param name="values">
  9914.             The values corresponding to each column in the selected index.
  9915.             </param>
  9916.             <returns>
  9917.             A standard SQLite return code.
  9918.             </returns>
  9919.         </member>
  9920.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)">
  9921.             <summary>
  9922.             This method is called in response to the
  9923.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  9924.             </summary>
  9925.             <param name="cursor">
  9926.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  9927.             associated with the previously opened virtual table cursor to be
  9928.             used.
  9929.             </param>
  9930.             <returns>
  9931.             A standard SQLite return code.
  9932.             </returns>
  9933.         </member>
  9934.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)">
  9935.             <summary>
  9936.             This method is called in response to the
  9937.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  9938.             </summary>
  9939.             <param name="cursor">
  9940.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  9941.             associated with the previously opened virtual table cursor to be
  9942.             used.
  9943.             </param>
  9944.             <returns>
  9945.             Non-zero if no more rows are available; zero otherwise.
  9946.             </returns>
  9947.         </member>
  9948.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)">
  9949.             <summary>
  9950.             This method is called in response to the
  9951.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  9952.             </summary>
  9953.             <param name="cursor">
  9954.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  9955.             associated with the previously opened virtual table cursor to be
  9956.             used.
  9957.             </param>
  9958.             <param name="context">
  9959.             The <see cref="T:System.Data.SQLite.SQLiteContext"/> object instance to be used for
  9960.             returning the specified column value to the SQLite core library.
  9961.             </param>
  9962.             <param name="index">
  9963.             The zero-based index corresponding to the column containing the
  9964.             value to be returned.
  9965.             </param>
  9966.             <returns>
  9967.             A standard SQLite return code.
  9968.             </returns>
  9969.         </member>
  9970.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)">
  9971.             <summary>
  9972.             This method is called in response to the
  9973.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  9974.             </summary>
  9975.             <param name="cursor">
  9976.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  9977.             associated with the previously opened virtual table cursor to be
  9978.             used.
  9979.             </param>
  9980.             <param name="rowId">
  9981.             Upon success, this parameter must be modified to contain the unique
  9982.             integer row identifier for the current row for the specified cursor.
  9983.             </param>
  9984.             <returns>
  9985.             A standard SQLite return code.
  9986.             </returns>
  9987.         </member>
  9988.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)">
  9989.             <summary>
  9990.             This method is called in response to the
  9991.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  9992.             </summary>
  9993.             <param name="table">
  9994.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  9995.             with this virtual table.
  9996.             </param>
  9997.             <param name="values">
  9998.             The array of <see cref="T:System.Data.SQLite.SQLiteValue"/> object instances containing
  9999.             the new or modified column values, if any.
  10000.             </param>
  10001.             <param name="rowId">
  10002.             Upon success, this parameter must be modified to contain the unique
  10003.             integer row identifier for the row that was inserted, if any.
  10004.             </param>
  10005.             <returns>
  10006.             A standard SQLite return code.
  10007.             </returns>
  10008.         </member>
  10009.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Begin(System.Data.SQLite.SQLiteVirtualTable)">
  10010.             <summary>
  10011.             This method is called in response to the
  10012.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  10013.             </summary>
  10014.             <param name="table">
  10015.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10016.             with this virtual table.
  10017.             </param>
  10018.             <returns>
  10019.             A standard SQLite return code.
  10020.             </returns>
  10021.         </member>
  10022.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Sync(System.Data.SQLite.SQLiteVirtualTable)">
  10023.             <summary>
  10024.             This method is called in response to the
  10025.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  10026.             </summary>
  10027.             <param name="table">
  10028.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10029.             with this virtual table.
  10030.             </param>
  10031.             <returns>
  10032.             A standard SQLite return code.
  10033.             </returns>
  10034.         </member>
  10035.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Commit(System.Data.SQLite.SQLiteVirtualTable)">
  10036.             <summary>
  10037.             This method is called in response to the
  10038.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  10039.             </summary>
  10040.             <param name="table">
  10041.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10042.             with this virtual table.
  10043.             </param>
  10044.             <returns>
  10045.             A standard SQLite return code.
  10046.             </returns>
  10047.         </member>
  10048.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Rollback(System.Data.SQLite.SQLiteVirtualTable)">
  10049.             <summary>
  10050.             This method is called in response to the
  10051.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  10052.             </summary>
  10053.             <param name="table">
  10054.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10055.             with this virtual table.
  10056.             </param>
  10057.             <returns>
  10058.             A standard SQLite return code.
  10059.             </returns>
  10060.         </member>
  10061.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)">
  10062.             <summary>
  10063.             This method is called in response to the
  10064.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  10065.             </summary>
  10066.             <param name="table">
  10067.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10068.             with this virtual table.
  10069.             </param>
  10070.             <param name="argumentCount">
  10071.             The number of arguments to the function being sought.
  10072.             </param>
  10073.             <param name="name">
  10074.             The name of the function being sought.
  10075.             </param>
  10076.             <param name="function">
  10077.             Upon success, this parameter must be modified to contain the
  10078.             <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance responsible for
  10079.             implementing the specified function.
  10080.             </param>
  10081.             <param name="pClientData">
  10082.             Upon success, this parameter must be modified to contain the
  10083.             native user-data pointer associated with
  10084.             <paramref name="function"/>.
  10085.             </param>
  10086.             <returns>
  10087.             Non-zero if the specified function was found; zero otherwise.
  10088.             </returns>
  10089.         </member>
  10090.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)">
  10091.             <summary>
  10092.             This method is called in response to the
  10093.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  10094.             </summary>
  10095.             <param name="table">
  10096.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10097.             with this virtual table.
  10098.             </param>
  10099.             <param name="newName">
  10100.             The new name for the virtual table.
  10101.             </param>
  10102.             <returns>
  10103.             A standard SQLite return code.
  10104.             </returns>
  10105.         </member>
  10106.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  10107.             <summary>
  10108.             This method is called in response to the
  10109.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  10110.             </summary>
  10111.             <param name="table">
  10112.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10113.             with this virtual table.
  10114.             </param>
  10115.             <param name="savepoint">
  10116.             This is an integer identifier under which the the current state of
  10117.             the virtual table should be saved.
  10118.             </param>
  10119.             <returns>
  10120.             A standard SQLite return code.
  10121.             </returns>
  10122.         </member>
  10123.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  10124.             <summary>
  10125.             This method is called in response to the
  10126.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  10127.             </summary>
  10128.             <param name="table">
  10129.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10130.             with this virtual table.
  10131.             </param>
  10132.             <param name="savepoint">
  10133.             This is an integer used to indicate that any saved states with an
  10134.             identifier greater than or equal to this should be deleted by the
  10135.             virtual table.
  10136.             </param>
  10137.             <returns>
  10138.             A standard SQLite return code.
  10139.             </returns>
  10140.         </member>
  10141.         <member name="M:System.Data.SQLite.ISQLiteManagedModule.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  10142.             <summary>
  10143.             This method is called in response to the
  10144.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  10145.             </summary>
  10146.             <param name="table">
  10147.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  10148.             with this virtual table.
  10149.             </param>
  10150.             <param name="savepoint">
  10151.             This is an integer identifier used to specify a specific saved
  10152.             state for the virtual table for it to restore itself back to, which
  10153.             should also have the effect of deleting all saved states with an
  10154.             integer identifier greater than this one.
  10155.             </param>
  10156.             <returns>
  10157.             A standard SQLite return code.
  10158.             </returns>
  10159.         </member>
  10160.         <member name="P:System.Data.SQLite.ISQLiteManagedModule.Declared">
  10161.             <summary>
  10162.             Returns non-zero if the schema for the virtual table has been
  10163.             declared.
  10164.             </summary>
  10165.         </member>
  10166.         <member name="P:System.Data.SQLite.ISQLiteManagedModule.Name">
  10167.             <summary>
  10168.             Returns the name of the module as it was registered with the SQLite
  10169.             core library.
  10170.             </summary>
  10171.         </member>
  10172.         <member name="T:System.Data.SQLite.SQLiteMemory">
  10173.             <summary>
  10174.             This class contains static methods that are used to allocate,
  10175.             manipulate, and free native memory provided by the SQLite core library.
  10176.             </summary>
  10177.         </member>
  10178.         <member name="M:System.Data.SQLite.SQLiteMemory.Allocate(System.Int32)">
  10179.             <summary>
  10180.             Allocates at least the specified number of bytes of native memory
  10181.             via the SQLite core library sqlite3_malloc() function and returns
  10182.             the resulting native pointer.
  10183.             </summary>
  10184.             <param name="size">
  10185.             The number of bytes to allocate.
  10186.             </param>
  10187.             <returns>
  10188.             The native pointer that points to a block of memory of at least the
  10189.             specified size -OR- <see cref="F:System.IntPtr.Zero"/> if the memory could
  10190.             not be allocated.
  10191.             </returns>
  10192.         </member>
  10193.         <member name="M:System.Data.SQLite.SQLiteMemory.Size(System.IntPtr)">
  10194.             <summary>
  10195.             Gets and returns the actual size of the specified memory block that
  10196.             was previously obtained from the <see cref="M:System.Data.SQLite.SQLiteMemory.Allocate(System.Int32)"/> method.
  10197.             </summary>
  10198.             <param name="pMemory">
  10199.             The native pointer to the memory block previously obtained from the
  10200.             <see cref="M:System.Data.SQLite.SQLiteMemory.Allocate(System.Int32)"/> method.
  10201.             </param>
  10202.             <returns>
  10203.             The actual size, in bytes, of the memory block specified via the
  10204.             native pointer.
  10205.             </returns>
  10206.         </member>
  10207.         <member name="M:System.Data.SQLite.SQLiteMemory.Free(System.IntPtr)">
  10208.             <summary>
  10209.             Frees a memory block previously obtained from the
  10210.             <see cref="M:System.Data.SQLite.SQLiteMemory.Allocate(System.Int32)"/> method.
  10211.             </summary>
  10212.             <param name="pMemory">
  10213.             The native pointer to the memory block previously obtained from the
  10214.             <see cref="M:System.Data.SQLite.SQLiteMemory.Allocate(System.Int32)"/> method.
  10215.             </param>
  10216.         </member>
  10217.         <member name="T:System.Data.SQLite.SQLiteString">
  10218.             <summary>
  10219.             This class contains static methods that are used to deal with native
  10220.             UTF-8 string pointers to be used with the SQLite core library.
  10221.             </summary>
  10222.         </member>
  10223.         <member name="F:System.Data.SQLite.SQLiteString.ThirtyBits">
  10224.             <summary>
  10225.             This is the maximum possible length for the native UTF-8 encoded
  10226.             strings used with the SQLite core library.
  10227.             </summary>
  10228.         </member>
  10229.         <member name="F:System.Data.SQLite.SQLiteString.Utf8Encoding">
  10230.             <summary>
  10231.             This is the <see cref="T:System.Text.Encoding"/> object instance used to handle
  10232.             conversions from/to UTF-8.
  10233.             </summary>
  10234.         </member>
  10235.         <member name="M:System.Data.SQLite.SQLiteString.GetUtf8BytesFromString(System.String)">
  10236.             <summary>
  10237.             Converts the specified managed string into the UTF-8 encoding and
  10238.             returns the array of bytes containing its representation in that
  10239.             encoding.
  10240.             </summary>
  10241.             <param name="value">
  10242.             The managed string to convert.
  10243.             </param>
  10244.             <returns>
  10245.             The array of bytes containing the representation of the managed
  10246.             string in the UTF-8 encoding or null upon failure.
  10247.             </returns>
  10248.         </member>
  10249.         <member name="M:System.Data.SQLite.SQLiteString.GetStringFromUtf8Bytes(System.Byte[])">
  10250.             <summary>
  10251.             Converts the specified array of bytes representing a string in the
  10252.             UTF-8 encoding and returns a managed string.
  10253.             </summary>
  10254.             <param name="bytes">
  10255.             The array of bytes to convert.
  10256.             </param>
  10257.             <returns>
  10258.             The managed string or null upon failure.
  10259.             </returns>
  10260.         </member>
  10261.         <member name="M:System.Data.SQLite.SQLiteString.ProbeForUtf8ByteLength(System.IntPtr,System.Int32)">
  10262.             <summary>
  10263.             Probes a native pointer to a string in the UTF-8 encoding for its
  10264.             terminating NUL character, within the specified length limit.
  10265.             </summary>
  10266.             <param name="pValue">
  10267.             The native NUL-terminated string pointer.
  10268.             </param>
  10269.             <param name="limit">
  10270.             The maximum length of the native string, in bytes.
  10271.             </param>
  10272.             <returns>
  10273.             The length of the native string, in bytes -OR- zero if the length
  10274.             could not be determined.
  10275.             </returns>
  10276.         </member>
  10277.         <member name="M:System.Data.SQLite.SQLiteString.StringFromUtf8IntPtr(System.IntPtr)">
  10278.             <summary>
  10279.             Converts the specified native NUL-terminated UTF-8 string pointer
  10280.             into a managed string.
  10281.             </summary>
  10282.             <param name="pValue">
  10283.             The native NUL-terminated UTF-8 string pointer.
  10284.             </param>
  10285.             <returns>
  10286.             The managed string or null upon failure.
  10287.             </returns>
  10288.         </member>
  10289.         <member name="M:System.Data.SQLite.SQLiteString.StringFromUtf8IntPtr(System.IntPtr,System.Int32)">
  10290.             <summary>
  10291.             Converts the specified native UTF-8 string pointer of the specified
  10292.             length into a managed string.
  10293.             </summary>
  10294.             <param name="pValue">
  10295.             The native UTF-8 string pointer.
  10296.             </param>
  10297.             <param name="length">
  10298.             The length of the native string, in bytes.
  10299.             </param>
  10300.             <returns>
  10301.             The managed string or null upon failure.
  10302.             </returns>
  10303.         </member>
  10304.         <member name="M:System.Data.SQLite.SQLiteString.Utf8IntPtrFromString(System.String)">
  10305.             <summary>
  10306.             Converts the specified managed string into a native NUL-terminated
  10307.             UTF-8 string pointer using memory obtained from the SQLite core
  10308.             library.
  10309.             </summary>
  10310.             <param name="value">
  10311.             The managed string to convert.
  10312.             </param>
  10313.             <returns>
  10314.             The native NUL-terminated UTF-8 string pointer or
  10315.             <see cref="F:System.IntPtr.Zero"/> upon failure.
  10316.             </returns>
  10317.         </member>
  10318.         <member name="M:System.Data.SQLite.SQLiteString.StringArrayFromUtf8SizeAndIntPtr(System.Int32,System.IntPtr)">
  10319.             <summary>
  10320.             Converts a logical array of native NUL-terminated UTF-8 string
  10321.             pointers into an array of managed strings.
  10322.             </summary>
  10323.             <param name="argc">
  10324.             The number of elements in the logical array of native
  10325.             NUL-terminated UTF-8 string pointers.
  10326.             </param>
  10327.             <param name="argv">
  10328.             The native pointer to the logical array of native NUL-terminated
  10329.             UTF-8 string pointers to convert.
  10330.             </param>
  10331.             <returns>
  10332.             The array of managed strings or null upon failure.
  10333.             </returns>
  10334.         </member>
  10335.         <member name="M:System.Data.SQLite.SQLiteString.Utf8IntPtrArrayFromStringArray(System.String[])">
  10336.             <summary>
  10337.             Converts an array of managed strings into an array of native
  10338.             NUL-terminated UTF-8 string pointers.
  10339.             </summary>
  10340.             <param name="values">
  10341.             The array of managed strings to convert.
  10342.             </param>
  10343.             <returns>
  10344.             The array of native NUL-terminated UTF-8 string pointers or null
  10345.             upon failure.
  10346.             </returns>
  10347.         </member>
  10348.         <member name="T:System.Data.SQLite.SQLiteBytes">
  10349.             <summary>
  10350.             This class contains static methods that are used to deal with native
  10351.             pointers to memory blocks that logically contain arrays of bytes to be
  10352.             used with the SQLite core library.
  10353.             </summary>
  10354.         </member>
  10355.         <member name="M:System.Data.SQLite.SQLiteBytes.FromIntPtr(System.IntPtr,System.Int32)">
  10356.             <summary>
  10357.             Converts a native pointer to a logical array of bytes of the
  10358.             specified length into a managed byte array.
  10359.             </summary>
  10360.             <param name="pValue">
  10361.             The native pointer to the logical array of bytes to convert.
  10362.             </param>
  10363.             <param name="length">
  10364.             The length, in bytes, of the logical array of bytes to convert.
  10365.             </param>
  10366.             <returns>
  10367.             The managed byte array or null upon failure.
  10368.             </returns>
  10369.         </member>
  10370.         <member name="M:System.Data.SQLite.SQLiteBytes.ToIntPtr(System.Byte[])">
  10371.             <summary>
  10372.             Converts a managed byte array into a native pointer to a logical
  10373.             array of bytes.
  10374.             </summary>
  10375.             <param name="value">
  10376.             The managed byte array to convert.
  10377.             </param>
  10378.             <returns>
  10379.             The native pointer to a logical byte array or null upon failure.
  10380.             </returns>
  10381.         </member>
  10382.         <member name="T:System.Data.SQLite.SQLiteMarshal">
  10383.             <summary>
  10384.             This class contains static methods that are used to perform several
  10385.             low-level data marshalling tasks between native and managed code.
  10386.             </summary>
  10387.         </member>
  10388.         <member name="M:System.Data.SQLite.SQLiteMarshal.IntPtrForOffset(System.IntPtr,System.Int32)">
  10389.             <summary>
  10390.             Returns a new <see cref="T:System.IntPtr"/> object instance based on the
  10391.             specified <see cref="T:System.IntPtr"/> object instance and an integer
  10392.             offset.
  10393.             </summary>
  10394.             <param name="pointer">
  10395.             The <see cref="T:System.IntPtr"/> object instance representing the base
  10396.             memory location.
  10397.             </param>
  10398.             <param name="offset">
  10399.             The integer offset from the base memory location that the new
  10400.             <see cref="T:System.IntPtr"/> object instance should point to.
  10401.             </param>
  10402.             <returns>
  10403.             The new <see cref="T:System.IntPtr"/> object instance.
  10404.             </returns>
  10405.         </member>
  10406.         <member name="M:System.Data.SQLite.SQLiteMarshal.RoundUp(System.Int32,System.Int32)">
  10407.             <summary>
  10408.             Rounds up an integer size to the next multiple of the alignment.
  10409.             </summary>
  10410.             <param name="size">
  10411.             The size, in bytes, to be rounded up.
  10412.             </param>
  10413.             <param name="alignment">
  10414.             The required alignment for the return value.
  10415.             </param>
  10416.             <returns>
  10417.             The size, in bytes, rounded up to the next multiple of the
  10418.             alignment.  This value may end up being the same as the original
  10419.             size.
  10420.             </returns>
  10421.         </member>
  10422.         <member name="M:System.Data.SQLite.SQLiteMarshal.NextOffsetOf(System.Int32,System.Int32,System.Int32)">
  10423.             <summary>
  10424.             Determines the offset, in bytes, of the next structure member.
  10425.             </summary>
  10426.             <param name="offset">
  10427.             The offset, in bytes, of the current structure member.
  10428.             </param>
  10429.             <param name="size">
  10430.             The size, in bytes, of the current structure member.
  10431.             </param>
  10432.             <param name="alignment">
  10433.             The alignment, in bytes, of the next structure member.
  10434.             </param>
  10435.             <returns>
  10436.             The offset, in bytes, of the next structure member.
  10437.             </returns>
  10438.         </member>
  10439.         <member name="M:System.Data.SQLite.SQLiteMarshal.ReadInt32(System.IntPtr,System.Int32)">
  10440.             <summary>
  10441.             Reads a <see cref="T:System.Int32"/> value from the specified memory
  10442.             location.
  10443.             </summary>
  10444.             <param name="pointer">
  10445.             The <see cref="T:System.IntPtr"/> object instance representing the base
  10446.             memory location.
  10447.             </param>
  10448.             <param name="offset">
  10449.             The integer offset from the base memory location where the
  10450.             <see cref="T:System.Int32"/> value to be read is located.
  10451.             </param>
  10452.             <returns>
  10453.             The <see cref="T:System.Int32"/> value at the specified memory location.
  10454.             </returns>
  10455.         </member>
  10456.         <member name="M:System.Data.SQLite.SQLiteMarshal.ReadDouble(System.IntPtr,System.Int32)">
  10457.             <summary>
  10458.             Reads a <see cref="T:System.Double"/> value from the specified memory
  10459.             location.
  10460.             </summary>
  10461.             <param name="pointer">
  10462.             The <see cref="T:System.IntPtr"/> object instance representing the base
  10463.             memory location.
  10464.             </param>
  10465.             <param name="offset">
  10466.             The integer offset from the base memory location where the
  10467.             <see cref="T:System.Double"/> to be read is located.
  10468.             </param>
  10469.             <returns>
  10470.             The <see cref="T:System.Double"/> value at the specified memory location.
  10471.             </returns>
  10472.         </member>
  10473.         <member name="M:System.Data.SQLite.SQLiteMarshal.ReadIntPtr(System.IntPtr,System.Int32)">
  10474.             <summary>
  10475.             Reads an <see cref="T:System.IntPtr"/> value from the specified memory
  10476.             location.
  10477.             </summary>
  10478.             <param name="pointer">
  10479.             The <see cref="T:System.IntPtr"/> object instance representing the base
  10480.             memory location.
  10481.             </param>
  10482.             <param name="offset">
  10483.             The integer offset from the base memory location where the
  10484.             <see cref="T:System.IntPtr"/> value to be read is located.
  10485.             </param>
  10486.             <returns>
  10487.             The <see cref="T:System.IntPtr"/> value at the specified memory location.
  10488.             </returns>
  10489.         </member>
  10490.         <member name="M:System.Data.SQLite.SQLiteMarshal.WriteInt32(System.IntPtr,System.Int32,System.Int32)">
  10491.             <summary>
  10492.             Writes an <see cref="T:System.Int32"/> value to the specified memory
  10493.             location.
  10494.             </summary>
  10495.             <param name="pointer">
  10496.             The <see cref="T:System.IntPtr"/> object instance representing the base
  10497.             memory location.
  10498.             </param>
  10499.             <param name="offset">
  10500.             The integer offset from the base memory location where the
  10501.             <see cref="T:System.Int32"/> value to be written is located.
  10502.             </param>
  10503.             <param name="value">
  10504.             The <see cref="T:System.Int32"/> value to write.
  10505.             </param>
  10506.         </member>
  10507.         <member name="M:System.Data.SQLite.SQLiteMarshal.WriteInt64(System.IntPtr,System.Int32,System.Int64)">
  10508.             <summary>
  10509.             Writes an <see cref="T:System.Int64"/> value to the specified memory
  10510.             location.
  10511.             </summary>
  10512.             <param name="pointer">
  10513.             The <see cref="T:System.IntPtr"/> object instance representing the base
  10514.             memory location.
  10515.             </param>
  10516.             <param name="offset">
  10517.             The integer offset from the base memory location where the
  10518.             <see cref="T:System.Int64"/> value to be written is located.
  10519.             </param>
  10520.             <param name="value">
  10521.             The <see cref="T:System.Int64"/> value to write.
  10522.             </param>
  10523.         </member>
  10524.         <member name="M:System.Data.SQLite.SQLiteMarshal.WriteDouble(System.IntPtr,System.Int32,System.Double)">
  10525.             <summary>
  10526.             Writes a <see cref="T:System.Double"/> value to the specified memory
  10527.             location.
  10528.             </summary>
  10529.             <param name="pointer">
  10530.             The <see cref="T:System.IntPtr"/> object instance representing the base
  10531.             memory location.
  10532.             </param>
  10533.             <param name="offset">
  10534.             The integer offset from the base memory location where the
  10535.             <see cref="T:System.Double"/> value to be written is located.
  10536.             </param>
  10537.             <param name="value">
  10538.             The <see cref="T:System.Double"/> value to write.
  10539.             </param>
  10540.         </member>
  10541.         <member name="M:System.Data.SQLite.SQLiteMarshal.WriteIntPtr(System.IntPtr,System.Int32,System.IntPtr)">
  10542.             <summary>
  10543.             Writes a <see cref="T:System.IntPtr"/> value to the specified memory
  10544.             location.
  10545.             </summary>
  10546.             <param name="pointer">
  10547.             The <see cref="T:System.IntPtr"/> object instance representing the base
  10548.             memory location.
  10549.             </param>
  10550.             <param name="offset">
  10551.             The integer offset from the base memory location where the
  10552.             <see cref="T:System.IntPtr"/> value to be written is located.
  10553.             </param>
  10554.             <param name="value">
  10555.             The <see cref="T:System.IntPtr"/> value to write.
  10556.             </param>
  10557.         </member>
  10558.         <member name="M:System.Data.SQLite.SQLiteMarshal.GetHashCode(System.Object,System.Boolean)">
  10559.             <summary>
  10560.             Generates a hash code value for the object.
  10561.             </summary>
  10562.             <param name="value">
  10563.             The object instance used to calculate the hash code.
  10564.             </param>
  10565.             <param name="identity">
  10566.             Non-zero if different object instances with the same value should
  10567.             generate different hash codes, where applicable.  This parameter
  10568.             has no effect on the .NET Compact Framework.
  10569.             </param>
  10570.             <returns>
  10571.             The hash code value -OR- zero if the object is null.
  10572.             </returns>
  10573.         </member>
  10574.         <member name="T:System.Data.SQLite.SQLiteModule">
  10575.             <summary>
  10576.             This class represents a managed virtual table module implementation.
  10577.             It is not sealed and must be used as the base class for any
  10578.             user-defined virtual table module classes implemented in managed code.
  10579.             </summary>
  10580.         </member>
  10581.         <member name="F:System.Data.SQLite.SQLiteModule.DefaultModuleVersion">
  10582.             <summary>
  10583.             The default version of the native sqlite3_module structure in use.
  10584.             </summary>
  10585.         </member>
  10586.         <member name="F:System.Data.SQLite.SQLiteModule.nativeModule">
  10587.             <summary>
  10588.             This field is used to store the native sqlite3_module structure
  10589.             associated with this object instance.
  10590.             </summary>
  10591.         </member>
  10592.         <member name="F:System.Data.SQLite.SQLiteModule.destroyModule">
  10593.             <summary>
  10594.             This field is used to store the destructor delegate to be passed to
  10595.             the SQLite core library via the sqlite3_create_disposable_module()
  10596.             function.
  10597.             </summary>
  10598.         </member>
  10599.         <member name="F:System.Data.SQLite.SQLiteModule.disposableModule">
  10600.             <summary>
  10601.             This field is used to store a pointer to the native sqlite3_module
  10602.             structure returned by the sqlite3_create_disposable_module
  10603.             function.
  10604.             </summary>
  10605.         </member>
  10606.         <member name="F:System.Data.SQLite.SQLiteModule.tables">
  10607.             <summary>
  10608.             This field is used to store the virtual table instances associated
  10609.             with this module.  The native pointer to the sqlite3_vtab derived
  10610.             structure is used to key into this collection.
  10611.             </summary>
  10612.         </member>
  10613.         <member name="F:System.Data.SQLite.SQLiteModule.cursors">
  10614.             <summary>
  10615.             This field is used to store the virtual table cursor instances
  10616.             associated with this module.  The native pointer to the
  10617.             sqlite3_vtab_cursor derived structure is used to key into this
  10618.             collection.
  10619.             </summary>
  10620.         </member>
  10621.         <member name="F:System.Data.SQLite.SQLiteModule.functions">
  10622.             <summary>
  10623.             This field is used to store the virtual table function instances
  10624.             associated with this module.  The case-insensitive function name
  10625.             and the number of arguments (with -1 meaning "any") are used to
  10626.             construct the string that is used to key into this collection.
  10627.             </summary>
  10628.         </member>
  10629.         <member name="M:System.Data.SQLite.SQLiteModule.#ctor(System.String)">
  10630.             <summary>
  10631.             Constructs an instance of this class.
  10632.             </summary>
  10633.             <param name="name">
  10634.             The name of the module.  This parameter cannot be null.
  10635.             </param>
  10636.         </member>
  10637.         <member name="M:System.Data.SQLite.SQLiteModule.CreateDisposableModule(System.IntPtr)">
  10638.             <summary>
  10639.             Calls the native SQLite core library in order to create a new
  10640.             disposable module containing the implementation of a virtual table.
  10641.             </summary>
  10642.             <param name="pDb">
  10643.             The native database connection pointer to use.
  10644.             </param>
  10645.             <returns>
  10646.             Non-zero upon success.
  10647.             </returns>
  10648.         </member>
  10649.         <member name="M:System.Data.SQLite.SQLiteModule.xDestroyModule(System.IntPtr)">
  10650.             <summary>
  10651.             This method is called by the SQLite core library when the native
  10652.             module associated with this object instance is being destroyed due
  10653.             to its parent connection being closed.  It may also be called by
  10654.             the "vtshim" module if/when the sqlite3_dispose_module() function
  10655.             is called.
  10656.             </summary>
  10657.             <param name="pClientData">
  10658.             The native user-data pointer associated with this module, as it was
  10659.             provided to the SQLite core library when the native module instance
  10660.             was created.
  10661.             </param>
  10662.         </member>
  10663.         <member name="M:System.Data.SQLite.SQLiteModule.AllocateNativeModule">
  10664.             <summary>
  10665.             Creates and returns the native sqlite_module structure using the
  10666.             configured (or default) <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/>
  10667.             interface implementation.
  10668.             </summary>
  10669.             <returns>
  10670.             The native sqlite_module structure using the configured (or
  10671.             default) <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface
  10672.             implementation.
  10673.             </returns>
  10674.         </member>
  10675.         <member name="M:System.Data.SQLite.SQLiteModule.AllocateNativeModule(System.Data.SQLite.ISQLiteNativeModule)">
  10676.             <summary>
  10677.             Creates and returns the native sqlite_module structure using the
  10678.             specified <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface
  10679.             implementation.
  10680.             </summary>
  10681.             <param name="module">
  10682.             The <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface implementation to
  10683.             use.
  10684.             </param>
  10685.             <returns>
  10686.             The native sqlite_module structure using the specified
  10687.             <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface implementation.
  10688.             </returns>
  10689.         </member>
  10690.         <member name="M:System.Data.SQLite.SQLiteModule.CopyNativeModule(System.Data.SQLite.UnsafeNativeMethods.sqlite3_module)">
  10691.             <summary>
  10692.             Creates a copy of the specified
  10693.             <see cref="T:System.Data.SQLite.UnsafeNativeMethods.sqlite3_module"/> object instance,
  10694.             using default implementations for the contained delegates when
  10695.             necessary.
  10696.             </summary>
  10697.             <param name="module">
  10698.             The <see cref="T:System.Data.SQLite.UnsafeNativeMethods.sqlite3_module"/> object
  10699.             instance to copy.
  10700.             </param>
  10701.             <returns>
  10702.             The new <see cref="T:System.Data.SQLite.UnsafeNativeMethods.sqlite3_module"/> object
  10703.             instance.
  10704.             </returns>
  10705.         </member>
  10706.         <member name="M:System.Data.SQLite.SQLiteModule.CreateOrConnect(System.Boolean,System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  10707.             <summary>
  10708.             Calls one of the virtual table initialization methods.
  10709.             </summary>
  10710.             <param name="create">
  10711.             Non-zero to call the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/>
  10712.             method; otherwise, the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/>
  10713.             method will be called.
  10714.             </param>
  10715.             <param name="pDb">
  10716.             The native database connection handle.
  10717.             </param>
  10718.             <param name="pAux">
  10719.             The original native pointer value that was provided to the
  10720.             sqlite3_create_module(), sqlite3_create_module_v2() or
  10721.             sqlite3_create_disposable_module() functions.
  10722.             </param>
  10723.             <param name="argc">
  10724.             The number of arguments from the CREATE VIRTUAL TABLE statement.
  10725.             </param>
  10726.             <param name="argv">
  10727.             The array of string arguments from the CREATE VIRTUAL TABLE
  10728.             statement.
  10729.             </param>
  10730.             <param name="pVtab">
  10731.             Upon success, this parameter must be modified to point to the newly
  10732.             created native sqlite3_vtab derived structure.
  10733.             </param>
  10734.             <param name="pError">
  10735.             Upon failure, this parameter must be modified to point to the error
  10736.             message, with the underlying memory having been obtained from the
  10737.             sqlite3_malloc() function.
  10738.             </param>
  10739.             <returns>
  10740.             A standard SQLite return code.
  10741.             </returns>
  10742.         </member>
  10743.         <member name="M:System.Data.SQLite.SQLiteModule.DestroyOrDisconnect(System.Boolean,System.IntPtr)">
  10744.             <summary>
  10745.             Calls one of the virtual table finalization methods.
  10746.             </summary>
  10747.             <param name="destroy">
  10748.             Non-zero to call the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/>
  10749.             method; otherwise, the
  10750.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method will be
  10751.             called.
  10752.             </param>
  10753.             <param name="pVtab">
  10754.             The native pointer to the sqlite3_vtab derived structure.
  10755.             </param>
  10756.             <returns>
  10757.             A standard SQLite return code.
  10758.             </returns>
  10759.         </member>
  10760.         <member name="M:System.Data.SQLite.SQLiteModule.SetTableError(System.Data.SQLite.SQLiteModule,System.IntPtr,System.Boolean,System.Boolean,System.String)">
  10761.             <summary>
  10762.             Arranges for the specified error message to be placed into the
  10763.             zErrMsg field of a sqlite3_vtab derived structure, freeing the
  10764.             existing error message, if any.
  10765.             </summary>
  10766.             <param name="module">
  10767.             The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance to be used.
  10768.             </param>
  10769.             <param name="pVtab">
  10770.             The native pointer to the sqlite3_vtab derived structure.
  10771.             </param>
  10772.             <param name="logErrors">
  10773.             Non-zero if this error message should also be logged using the
  10774.             <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  10775.             </param>
  10776.             <param name="logExceptions">
  10777.             Non-zero if caught exceptions should be logged using the
  10778.             <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  10779.             </param>
  10780.             <param name="error">
  10781.             The error message.
  10782.             </param>
  10783.             <returns>
  10784.             Non-zero upon success.
  10785.             </returns>
  10786.         </member>
  10787.         <member name="M:System.Data.SQLite.SQLiteModule.SetTableError(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteVirtualTable,System.Boolean,System.Boolean,System.String)">
  10788.             <summary>
  10789.             Arranges for the specified error message to be placed into the
  10790.             zErrMsg field of a sqlite3_vtab derived structure, freeing the
  10791.             existing error message, if any.
  10792.             </summary>
  10793.             <param name="module">
  10794.             The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance to be used.
  10795.             </param>
  10796.             <param name="table">
  10797.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance used to
  10798.             lookup the native pointer to the sqlite3_vtab derived structure.
  10799.             </param>
  10800.             <param name="logErrors">
  10801.             Non-zero if this error message should also be logged using the
  10802.             <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  10803.             </param>
  10804.             <param name="logExceptions">
  10805.             Non-zero if caught exceptions should be logged using the
  10806.             <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  10807.             </param>
  10808.             <param name="error">
  10809.             The error message.
  10810.             </param>
  10811.             <returns>
  10812.             Non-zero upon success.
  10813.             </returns>
  10814.         </member>
  10815.         <member name="M:System.Data.SQLite.SQLiteModule.SetCursorError(System.Data.SQLite.SQLiteModule,System.IntPtr,System.Boolean,System.Boolean,System.String)">
  10816.             <summary>
  10817.             Arranges for the specified error message to be placed into the
  10818.             zErrMsg field of a sqlite3_vtab derived structure, freeing the
  10819.             existing error message, if any.
  10820.             </summary>
  10821.             <param name="module">
  10822.             The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance to be used.
  10823.             </param>
  10824.             <param name="pCursor">
  10825.             The native pointer to the sqlite3_vtab_cursor derived structure
  10826.             used to get the native pointer to the sqlite3_vtab derived
  10827.             structure.
  10828.             </param>
  10829.             <param name="logErrors">
  10830.             Non-zero if this error message should also be logged using the
  10831.             <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  10832.             </param>
  10833.             <param name="logExceptions">
  10834.             Non-zero if caught exceptions should be logged using the
  10835.             <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  10836.             </param>
  10837.             <param name="error">
  10838.             The error message.
  10839.             </param>
  10840.             <returns>
  10841.             Non-zero upon success.
  10842.             </returns>
  10843.         </member>
  10844.         <member name="M:System.Data.SQLite.SQLiteModule.SetCursorError(System.Data.SQLite.SQLiteModule,System.Data.SQLite.SQLiteVirtualTableCursor,System.Boolean,System.Boolean,System.String)">
  10845.             <summary>
  10846.             Arranges for the specified error message to be placed into the
  10847.             zErrMsg field of a sqlite3_vtab derived structure, freeing the
  10848.             existing error message, if any.
  10849.             </summary>
  10850.             <param name="module">
  10851.             The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance to be used.
  10852.             </param>
  10853.             <param name="cursor">
  10854.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance used to
  10855.             lookup the native pointer to the sqlite3_vtab derived structure.
  10856.             </param>
  10857.             <param name="logErrors">
  10858.             Non-zero if this error message should also be logged using the
  10859.             <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  10860.             </param>
  10861.             <param name="logExceptions">
  10862.             Non-zero if caught exceptions should be logged using the
  10863.             <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  10864.             </param>
  10865.             <param name="error">
  10866.             The error message.
  10867.             </param>
  10868.             <returns>
  10869.             Non-zero upon success.
  10870.             </returns>
  10871.         </member>
  10872.         <member name="M:System.Data.SQLite.SQLiteModule.GetNativeModuleImpl">
  10873.             <summary>
  10874.             Gets and returns the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface
  10875.             implementation to be used when creating the native sqlite3_module
  10876.             structure.  Derived classes may override this method to supply an
  10877.             alternate implementation for the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/>
  10878.             interface.
  10879.             </summary>
  10880.             <returns>
  10881.             The <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface implementation to
  10882.             be used when populating the native sqlite3_module structure.  If
  10883.             the returned value is null, the private methods provided by the
  10884.             <see cref="T:System.Data.SQLite.SQLiteModule"/> class and relating to the
  10885.             <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface  will be used to
  10886.             create the necessary delegates.
  10887.             </returns>
  10888.         </member>
  10889.         <member name="M:System.Data.SQLite.SQLiteModule.CreateNativeModuleImpl">
  10890.             <summary>
  10891.             Creates and returns the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/>
  10892.             interface implementation corresponding to the current
  10893.             <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance.
  10894.             </summary>
  10895.             <returns>
  10896.             The <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> interface implementation
  10897.             corresponding to the current <see cref="T:System.Data.SQLite.SQLiteModule"/> object
  10898.             instance.
  10899.             </returns>
  10900.         </member>
  10901.         <member name="M:System.Data.SQLite.SQLiteModule.AllocateTable">
  10902.             <summary>
  10903.             Allocates a native sqlite3_vtab derived structure and returns a
  10904.             native pointer to it.
  10905.             </summary>
  10906.             <returns>
  10907.             A native pointer to a native sqlite3_vtab derived structure.
  10908.             </returns>
  10909.         </member>
  10910.         <member name="M:System.Data.SQLite.SQLiteModule.ZeroTable(System.IntPtr)">
  10911.             <summary>
  10912.             Zeros out the fields of a native sqlite3_vtab derived structure.
  10913.             </summary>
  10914.             <param name="pVtab">
  10915.             The native pointer to the native sqlite3_vtab derived structure to
  10916.             zero.
  10917.             </param>
  10918.         </member>
  10919.         <member name="M:System.Data.SQLite.SQLiteModule.FreeTable(System.IntPtr)">
  10920.             <summary>
  10921.             Frees a native sqlite3_vtab structure using the provided native
  10922.             pointer to it.
  10923.             </summary>
  10924.             <param name="pVtab">
  10925.             A native pointer to a native sqlite3_vtab derived structure.
  10926.             </param>
  10927.         </member>
  10928.         <member name="M:System.Data.SQLite.SQLiteModule.AllocateCursor">
  10929.             <summary>
  10930.             Allocates a native sqlite3_vtab_cursor derived structure and
  10931.             returns a native pointer to it.
  10932.             </summary>
  10933.             <returns>
  10934.             A native pointer to a native sqlite3_vtab_cursor derived structure.
  10935.             </returns>
  10936.         </member>
  10937.         <member name="M:System.Data.SQLite.SQLiteModule.FreeCursor(System.IntPtr)">
  10938.             <summary>
  10939.             Frees a native sqlite3_vtab_cursor structure using the provided
  10940.             native pointer to it.
  10941.             </summary>
  10942.             <param name="pCursor">
  10943.             A native pointer to a native sqlite3_vtab_cursor derived structure.
  10944.             </param>
  10945.         </member>
  10946.         <member name="M:System.Data.SQLite.SQLiteModule.TableFromCursor(System.Data.SQLite.SQLiteModule,System.IntPtr)">
  10947.             <summary>
  10948.             Reads and returns the native pointer to the sqlite3_vtab derived
  10949.             structure based on the native pointer to the sqlite3_vtab_cursor
  10950.             derived structure.
  10951.             </summary>
  10952.             <param name="module">
  10953.             The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance to be used.
  10954.             </param>
  10955.             <param name="pCursor">
  10956.             The native pointer to the sqlite3_vtab_cursor derived structure
  10957.             from which to read the native pointer to the sqlite3_vtab derived
  10958.             structure.
  10959.             </param>
  10960.             <returns>
  10961.             The native pointer to the sqlite3_vtab derived structure -OR-
  10962.             <see cref="F:System.IntPtr.Zero"/> if it cannot be determined.
  10963.             </returns>
  10964.         </member>
  10965.         <member name="M:System.Data.SQLite.SQLiteModule.TableFromCursor(System.IntPtr)">
  10966.             <summary>
  10967.             Reads and returns the native pointer to the sqlite3_vtab derived
  10968.             structure based on the native pointer to the sqlite3_vtab_cursor
  10969.             derived structure.
  10970.             </summary>
  10971.             <param name="pCursor">
  10972.             The native pointer to the sqlite3_vtab_cursor derived structure
  10973.             from which to read the native pointer to the sqlite3_vtab derived
  10974.             structure.
  10975.             </param>
  10976.             <returns>
  10977.             The native pointer to the sqlite3_vtab derived structure -OR-
  10978.             <see cref="F:System.IntPtr.Zero"/> if it cannot be determined.
  10979.             </returns>
  10980.         </member>
  10981.         <member name="M:System.Data.SQLite.SQLiteModule.TableFromIntPtr(System.IntPtr)">
  10982.             <summary>
  10983.             Looks up and returns the <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object
  10984.             instance based on the native pointer to the sqlite3_vtab derived
  10985.             structure.
  10986.             </summary>
  10987.             <param name="pVtab">
  10988.             The native pointer to the sqlite3_vtab derived structure.
  10989.             </param>
  10990.             <returns>
  10991.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance or null if
  10992.             the corresponding one cannot be found.
  10993.             </returns>
  10994.         </member>
  10995.         <member name="M:System.Data.SQLite.SQLiteModule.TableToIntPtr(System.Data.SQLite.SQLiteVirtualTable)">
  10996.             <summary>
  10997.             Allocates and returns a native pointer to a sqlite3_vtab derived
  10998.             structure and creates an association between it and the specified
  10999.             <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance.
  11000.             </summary>
  11001.             <param name="table">
  11002.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance to be used
  11003.             when creating the association.
  11004.             </param>
  11005.             <returns>
  11006.             The native pointer to a sqlite3_vtab derived structure or
  11007.             <see cref="F:System.IntPtr.Zero"/> if the method fails for any reason.
  11008.             </returns>
  11009.         </member>
  11010.         <member name="M:System.Data.SQLite.SQLiteModule.CursorFromIntPtr(System.IntPtr,System.IntPtr)">
  11011.             <summary>
  11012.             Looks up and returns the <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/>
  11013.             object instance based on the native pointer to the
  11014.             sqlite3_vtab_cursor derived structure.
  11015.             </summary>
  11016.             <param name="pVtab">
  11017.             The native pointer to the sqlite3_vtab derived structure.
  11018.             </param>
  11019.             <param name="pCursor">
  11020.             The native pointer to the sqlite3_vtab_cursor derived structure.
  11021.             </param>
  11022.             <returns>
  11023.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance or null
  11024.             if the corresponding one cannot be found.
  11025.             </returns>
  11026.         </member>
  11027.         <member name="M:System.Data.SQLite.SQLiteModule.CursorToIntPtr(System.Data.SQLite.SQLiteVirtualTableCursor)">
  11028.             <summary>
  11029.             Allocates and returns a native pointer to a sqlite3_vtab_cursor
  11030.             derived structure and creates an association between it and the
  11031.             specified <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance.
  11032.             </summary>
  11033.             <param name="cursor">
  11034.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance to be
  11035.             used when creating the association.
  11036.             </param>
  11037.             <returns>
  11038.             The native pointer to a sqlite3_vtab_cursor derived structure or
  11039.             <see cref="F:System.IntPtr.Zero"/> if the method fails for any reason.
  11040.             </returns>
  11041.         </member>
  11042.         <member name="M:System.Data.SQLite.SQLiteModule.GetFunctionKey(System.Int32,System.String,System.Data.SQLite.SQLiteFunction)">
  11043.             <summary>
  11044.             Deterimines the key that should be used to identify and store the
  11045.             <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance for the virtual table
  11046.             (i.e. to be returned via the
  11047.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method).
  11048.             </summary>
  11049.             <param name="argumentCount">
  11050.             The number of arguments to the virtual table function.
  11051.             </param>
  11052.             <param name="name">
  11053.             The name of the virtual table function.
  11054.             </param>
  11055.             <param name="function">
  11056.             The <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance associated with
  11057.             this virtual table function.
  11058.             </param>
  11059.             <returns>
  11060.             The string that should be used to identify and store the virtual
  11061.             table function instance.  This method cannot return null.  If null
  11062.             is returned from this method, the behavior is undefined.
  11063.             </returns>
  11064.         </member>
  11065.         <member name="M:System.Data.SQLite.SQLiteModule.DeclareTable(System.Data.SQLite.SQLiteConnection,System.String,System.String@)">
  11066.             <summary>
  11067.             Attempts to declare the schema for the virtual table using the
  11068.             specified database connection.
  11069.             </summary>
  11070.             <param name="connection">
  11071.             The <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance to use when
  11072.             declaring the schema of the virtual table.  This parameter may not
  11073.             be null.
  11074.             </param>
  11075.             <param name="sql">
  11076.             The string containing the CREATE TABLE statement that completely
  11077.             describes the schema for the virtual table.  This parameter may not
  11078.             be null.
  11079.             </param>
  11080.             <param name="error">
  11081.             Upon failure, this parameter must be modified to contain an error
  11082.             message.
  11083.             </param>
  11084.             <returns>
  11085.             A standard SQLite return code.
  11086.             </returns>
  11087.         </member>
  11088.         <member name="M:System.Data.SQLite.SQLiteModule.DeclareFunction(System.Data.SQLite.SQLiteConnection,System.Int32,System.String,System.String@)">
  11089.             <summary>
  11090.             Calls the native SQLite core library in order to declare a virtual
  11091.             table function in response to a call into the
  11092.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/>
  11093.             or <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> virtual table
  11094.             methods.
  11095.             </summary>
  11096.             <param name="connection">
  11097.             The <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance to use when
  11098.             declaring the schema of the virtual table.
  11099.             </param>
  11100.             <param name="argumentCount">
  11101.             The number of arguments to the function being declared.
  11102.             </param>
  11103.             <param name="name">
  11104.             The name of the function being declared.
  11105.             </param>
  11106.             <param name="error">
  11107.             Upon success, the contents of this parameter are undefined.  Upon
  11108.             failure, it should contain an appropriate error message.
  11109.             </param>
  11110.             <returns>
  11111.             A standard SQLite return code.
  11112.             </returns>
  11113.         </member>
  11114.         <member name="M:System.Data.SQLite.SQLiteModule.SetTableError(System.IntPtr,System.String)">
  11115.             <summary>
  11116.             Arranges for the specified error message to be placed into the
  11117.             zErrMsg field of a sqlite3_vtab derived structure, freeing the
  11118.             existing error message, if any.
  11119.             </summary>
  11120.             <param name="pVtab">
  11121.             The native pointer to the sqlite3_vtab derived structure.
  11122.             </param>
  11123.             <param name="error">
  11124.             The error message.
  11125.             </param>
  11126.             <returns>
  11127.             Non-zero upon success.
  11128.             </returns>
  11129.         </member>
  11130.         <member name="M:System.Data.SQLite.SQLiteModule.SetTableError(System.Data.SQLite.SQLiteVirtualTable,System.String)">
  11131.             <summary>
  11132.             Arranges for the specified error message to be placed into the
  11133.             zErrMsg field of a sqlite3_vtab derived structure, freeing the
  11134.             existing error message, if any.
  11135.             </summary>
  11136.             <param name="table">
  11137.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance used to
  11138.             lookup the native pointer to the sqlite3_vtab derived structure.
  11139.             </param>
  11140.             <param name="error">
  11141.             The error message.
  11142.             </param>
  11143.             <returns>
  11144.             Non-zero upon success.
  11145.             </returns>
  11146.         </member>
  11147.         <member name="M:System.Data.SQLite.SQLiteModule.SetCursorError(System.Data.SQLite.SQLiteVirtualTableCursor,System.String)">
  11148.             <summary>
  11149.             Arranges for the specified error message to be placed into the
  11150.             zErrMsg field of a sqlite3_vtab derived structure, freeing the
  11151.             existing error message, if any.
  11152.             </summary>
  11153.             <param name="cursor">
  11154.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance used to
  11155.             lookup the native pointer to the sqlite3_vtab derived structure.
  11156.             </param>
  11157.             <param name="error">
  11158.             The error message.
  11159.             </param>
  11160.             <returns>
  11161.             Non-zero upon success.
  11162.             </returns>
  11163.         </member>
  11164.         <member name="M:System.Data.SQLite.SQLiteModule.SetEstimatedCost(System.Data.SQLite.SQLiteIndex,System.Nullable{System.Double})">
  11165.             <summary>
  11166.             Modifies the specified <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance
  11167.             to contain the specified estimated cost.
  11168.             </summary>
  11169.             <param name="index">
  11170.             The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance to modify.
  11171.             </param>
  11172.             <param name="estimatedCost">
  11173.             The estimated cost value to use.  Using a null value means that the
  11174.             default value provided by the SQLite core library should be used.
  11175.             </param>
  11176.             <returns>
  11177.             Non-zero upon success.
  11178.             </returns>
  11179.         </member>
  11180.         <member name="M:System.Data.SQLite.SQLiteModule.SetEstimatedCost(System.Data.SQLite.SQLiteIndex)">
  11181.             <summary>
  11182.             Modifies the specified <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance
  11183.             to contain the default estimated cost.
  11184.             </summary>
  11185.             <param name="index">
  11186.             The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance to modify.
  11187.             </param>
  11188.             <returns>
  11189.             Non-zero upon success.
  11190.             </returns>
  11191.         </member>
  11192.         <member name="M:System.Data.SQLite.SQLiteModule.SetEstimatedRows(System.Data.SQLite.SQLiteIndex,System.Nullable{System.Int64})">
  11193.             <summary>
  11194.             Modifies the specified <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance
  11195.             to contain the specified estimated rows.
  11196.             </summary>
  11197.             <param name="index">
  11198.             The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance to modify.
  11199.             </param>
  11200.             <param name="estimatedRows">
  11201.             The estimated rows value to use.  Using a null value means that the
  11202.             default value provided by the SQLite core library should be used.
  11203.             </param>
  11204.             <returns>
  11205.             Non-zero upon success.
  11206.             </returns>
  11207.         </member>
  11208.         <member name="M:System.Data.SQLite.SQLiteModule.SetEstimatedRows(System.Data.SQLite.SQLiteIndex)">
  11209.             <summary>
  11210.             Modifies the specified <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance
  11211.             to contain the default estimated rows.
  11212.             </summary>
  11213.             <param name="index">
  11214.             The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance to modify.
  11215.             </param>
  11216.             <returns>
  11217.             Non-zero upon success.
  11218.             </returns>
  11219.         </member>
  11220.         <member name="M:System.Data.SQLite.SQLiteModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  11221.             <summary>
  11222.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11223.             </summary>
  11224.             <param name="pDb">
  11225.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11226.             </param>
  11227.             <param name="pAux">
  11228.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11229.             </param>
  11230.             <param name="argc">
  11231.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11232.             </param>
  11233.             <param name="argv">
  11234.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11235.             </param>
  11236.             <param name="pVtab">
  11237.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11238.             </param>
  11239.             <param name="pError">
  11240.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11241.             </param>
  11242.             <returns>
  11243.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11244.             </returns>
  11245.         </member>
  11246.         <member name="M:System.Data.SQLite.SQLiteModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  11247.             <summary>
  11248.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11249.             </summary>
  11250.             <param name="pDb">
  11251.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11252.             </param>
  11253.             <param name="pAux">
  11254.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11255.             </param>
  11256.             <param name="argc">
  11257.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11258.             </param>
  11259.             <param name="argv">
  11260.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11261.             </param>
  11262.             <param name="pVtab">
  11263.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11264.             </param>
  11265.             <param name="pError">
  11266.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11267.             </param>
  11268.             <returns>
  11269.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11270.             </returns>
  11271.         </member>
  11272.         <member name="M:System.Data.SQLite.SQLiteModule.xBestIndex(System.IntPtr,System.IntPtr)">
  11273.             <summary>
  11274.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  11275.             </summary>
  11276.             <param name="pVtab">
  11277.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  11278.             </param>
  11279.             <param name="pIndex">
  11280.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  11281.             </param>
  11282.             <returns>
  11283.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  11284.             </returns>
  11285.         </member>
  11286.         <member name="M:System.Data.SQLite.SQLiteModule.xDisconnect(System.IntPtr)">
  11287.             <summary>
  11288.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  11289.             </summary>
  11290.             <param name="pVtab">
  11291.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  11292.             </param>
  11293.             <returns>
  11294.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  11295.             </returns>
  11296.         </member>
  11297.         <member name="M:System.Data.SQLite.SQLiteModule.xDestroy(System.IntPtr)">
  11298.             <summary>
  11299.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  11300.             </summary>
  11301.             <param name="pVtab">
  11302.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  11303.             </param>
  11304.             <returns>
  11305.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  11306.             </returns>
  11307.         </member>
  11308.         <member name="M:System.Data.SQLite.SQLiteModule.xOpen(System.IntPtr,System.IntPtr@)">
  11309.             <summary>
  11310.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  11311.             </summary>
  11312.             <param name="pVtab">
  11313.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  11314.             </param>
  11315.             <param name="pCursor">
  11316.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  11317.             </param>
  11318.             <returns>
  11319.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  11320.             </returns>
  11321.         </member>
  11322.         <member name="M:System.Data.SQLite.SQLiteModule.xClose(System.IntPtr)">
  11323.             <summary>
  11324.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  11325.             </summary>
  11326.             <param name="pCursor">
  11327.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  11328.             </param>
  11329.             <returns>
  11330.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  11331.             </returns>
  11332.         </member>
  11333.         <member name="M:System.Data.SQLite.SQLiteModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)">
  11334.             <summary>
  11335.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11336.             </summary>
  11337.             <param name="pCursor">
  11338.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11339.             </param>
  11340.             <param name="idxNum">
  11341.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11342.             </param>
  11343.             <param name="idxStr">
  11344.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11345.             </param>
  11346.             <param name="argc">
  11347.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11348.             </param>
  11349.             <param name="argv">
  11350.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11351.             </param>
  11352.             <returns>
  11353.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11354.             </returns>
  11355.         </member>
  11356.         <member name="M:System.Data.SQLite.SQLiteModule.xNext(System.IntPtr)">
  11357.             <summary>
  11358.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  11359.             </summary>
  11360.             <param name="pCursor">
  11361.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  11362.             </param>
  11363.             <returns>
  11364.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  11365.             </returns>
  11366.         </member>
  11367.         <member name="M:System.Data.SQLite.SQLiteModule.xEof(System.IntPtr)">
  11368.             <summary>
  11369.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  11370.             </summary>
  11371.             <param name="pCursor">
  11372.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  11373.             </param>
  11374.             <returns>
  11375.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  11376.             </returns>
  11377.         </member>
  11378.         <member name="M:System.Data.SQLite.SQLiteModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)">
  11379.             <summary>
  11380.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  11381.             </summary>
  11382.             <param name="pCursor">
  11383.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  11384.             </param>
  11385.             <param name="pContext">
  11386.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  11387.             </param>
  11388.             <param name="index">
  11389.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  11390.             </param>
  11391.             <returns>
  11392.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  11393.             </returns>
  11394.         </member>
  11395.         <member name="M:System.Data.SQLite.SQLiteModule.xRowId(System.IntPtr,System.Int64@)">
  11396.             <summary>
  11397.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  11398.             </summary>
  11399.             <param name="pCursor">
  11400.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  11401.             </param>
  11402.             <param name="rowId">
  11403.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  11404.             </param>
  11405.             <returns>
  11406.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  11407.             </returns>
  11408.         </member>
  11409.         <member name="M:System.Data.SQLite.SQLiteModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)">
  11410.             <summary>
  11411.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  11412.             </summary>
  11413.             <param name="pVtab">
  11414.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  11415.             </param>
  11416.             <param name="argc">
  11417.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  11418.             </param>
  11419.             <param name="argv">
  11420.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  11421.             </param>
  11422.             <param name="rowId">
  11423.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  11424.             </param>
  11425.             <returns>
  11426.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  11427.             </returns>
  11428.         </member>
  11429.         <member name="M:System.Data.SQLite.SQLiteModule.xBegin(System.IntPtr)">
  11430.             <summary>
  11431.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  11432.             </summary>
  11433.             <param name="pVtab">
  11434.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  11435.             </param>
  11436.             <returns>
  11437.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  11438.             </returns>
  11439.         </member>
  11440.         <member name="M:System.Data.SQLite.SQLiteModule.xSync(System.IntPtr)">
  11441.             <summary>
  11442.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  11443.             </summary>
  11444.             <param name="pVtab">
  11445.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  11446.             </param>
  11447.             <returns>
  11448.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  11449.             </returns>
  11450.         </member>
  11451.         <member name="M:System.Data.SQLite.SQLiteModule.xCommit(System.IntPtr)">
  11452.             <summary>
  11453.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  11454.             </summary>
  11455.             <param name="pVtab">
  11456.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  11457.             </param>
  11458.             <returns>
  11459.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  11460.             </returns>
  11461.         </member>
  11462.         <member name="M:System.Data.SQLite.SQLiteModule.xRollback(System.IntPtr)">
  11463.             <summary>
  11464.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  11465.             </summary>
  11466.             <param name="pVtab">
  11467.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  11468.             </param>
  11469.             <returns>
  11470.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  11471.             </returns>
  11472.         </member>
  11473.         <member name="M:System.Data.SQLite.SQLiteModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)">
  11474.             <summary>
  11475.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11476.             </summary>
  11477.             <param name="pVtab">
  11478.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11479.             </param>
  11480.             <param name="nArg">
  11481.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11482.             </param>
  11483.             <param name="zName">
  11484.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11485.             </param>
  11486.             <param name="callback">
  11487.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11488.             </param>
  11489.             <param name="pClientData">
  11490.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11491.             </param>
  11492.             <returns>
  11493.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11494.             </returns>
  11495.         </member>
  11496.         <member name="M:System.Data.SQLite.SQLiteModule.xRename(System.IntPtr,System.IntPtr)">
  11497.             <summary>
  11498.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  11499.             </summary>
  11500.             <param name="pVtab">
  11501.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  11502.             </param>
  11503.             <param name="zNew">
  11504.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  11505.             </param>
  11506.             <returns>
  11507.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  11508.             </returns>
  11509.         </member>
  11510.         <member name="M:System.Data.SQLite.SQLiteModule.xSavepoint(System.IntPtr,System.Int32)">
  11511.             <summary>
  11512.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  11513.             </summary>
  11514.             <param name="pVtab">
  11515.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  11516.             </param>
  11517.             <param name="iSavepoint">
  11518.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  11519.             </param>
  11520.             <returns>
  11521.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  11522.             </returns>
  11523.         </member>
  11524.         <member name="M:System.Data.SQLite.SQLiteModule.xRelease(System.IntPtr,System.Int32)">
  11525.             <summary>
  11526.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  11527.             </summary>
  11528.             <param name="pVtab">
  11529.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  11530.             </param>
  11531.             <param name="iSavepoint">
  11532.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  11533.             </param>
  11534.             <returns>
  11535.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  11536.             </returns>
  11537.         </member>
  11538.         <member name="M:System.Data.SQLite.SQLiteModule.xRollbackTo(System.IntPtr,System.Int32)">
  11539.             <summary>
  11540.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  11541.             </summary>
  11542.             <param name="pVtab">
  11543.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  11544.             </param>
  11545.             <param name="iSavepoint">
  11546.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  11547.             </param>
  11548.             <returns>
  11549.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  11550.             </returns>
  11551.         </member>
  11552.         <member name="M:System.Data.SQLite.SQLiteModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  11553.             <summary>
  11554.             This method is called in response to the
  11555.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11556.             </summary>
  11557.             <param name="connection">
  11558.             The <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance associated with
  11559.             the virtual table.
  11560.             </param>
  11561.             <param name="pClientData">
  11562.             The native user-data pointer associated with this module, as it was
  11563.             provided to the SQLite core library when the native module instance
  11564.             was created.
  11565.             </param>
  11566.             <param name="arguments">
  11567.             The module name, database name, virtual table name, and all other
  11568.             arguments passed to the CREATE VIRTUAL TABLE statement.
  11569.             </param>
  11570.             <param name="table">
  11571.             Upon success, this parameter must be modified to contain the
  11572.             <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated with
  11573.             the virtual table.
  11574.             </param>
  11575.             <param name="error">
  11576.             Upon failure, this parameter must be modified to contain an error
  11577.             message.
  11578.             </param>
  11579.             <returns>
  11580.             A standard SQLite return code.
  11581.             </returns>
  11582.         </member>
  11583.         <member name="M:System.Data.SQLite.SQLiteModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  11584.             <summary>
  11585.             This method is called in response to the
  11586.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  11587.             </summary>
  11588.             <param name="connection">
  11589.             The <see cref="T:System.Data.SQLite.SQLiteConnection"/> object instance associated with
  11590.             the virtual table.
  11591.             </param>
  11592.             <param name="pClientData">
  11593.             The native user-data pointer associated with this module, as it was
  11594.             provided to the SQLite core library when the native module instance
  11595.             was created.
  11596.             </param>
  11597.             <param name="arguments">
  11598.             The module name, database name, virtual table name, and all other
  11599.             arguments passed to the CREATE VIRTUAL TABLE statement.
  11600.             </param>
  11601.             <param name="table">
  11602.             Upon success, this parameter must be modified to contain the
  11603.             <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated with
  11604.             the virtual table.
  11605.             </param>
  11606.             <param name="error">
  11607.             Upon failure, this parameter must be modified to contain an error
  11608.             message.
  11609.             </param>
  11610.             <returns>
  11611.             A standard SQLite return code.
  11612.             </returns>
  11613.         </member>
  11614.         <member name="M:System.Data.SQLite.SQLiteModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)">
  11615.             <summary>
  11616.             This method is called in response to the
  11617.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  11618.             </summary>
  11619.             <param name="table">
  11620.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11621.             with this virtual table.
  11622.             </param>
  11623.             <param name="index">
  11624.             The <see cref="T:System.Data.SQLite.SQLiteIndex"/> object instance containing all the
  11625.             data for the inputs and outputs relating to index selection.
  11626.             </param>
  11627.             <returns>
  11628.             A standard SQLite return code.
  11629.             </returns>
  11630.         </member>
  11631.         <member name="M:System.Data.SQLite.SQLiteModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)">
  11632.             <summary>
  11633.             This method is called in response to the
  11634.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  11635.             </summary>
  11636.             <param name="table">
  11637.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11638.             with this virtual table.
  11639.             </param>
  11640.             <returns>
  11641.             A standard SQLite return code.
  11642.             </returns>
  11643.         </member>
  11644.         <member name="M:System.Data.SQLite.SQLiteModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)">
  11645.             <summary>
  11646.             This method is called in response to the
  11647.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  11648.             </summary>
  11649.             <param name="table">
  11650.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11651.             with this virtual table.
  11652.             </param>
  11653.             <returns>
  11654.             A standard SQLite return code.
  11655.             </returns>
  11656.         </member>
  11657.         <member name="M:System.Data.SQLite.SQLiteModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)">
  11658.             <summary>
  11659.             This method is called in response to the
  11660.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  11661.             </summary>
  11662.             <param name="table">
  11663.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11664.             with this virtual table.
  11665.             </param>
  11666.             <param name="cursor">
  11667.             Upon success, this parameter must be modified to contain the
  11668.             <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance associated
  11669.             with the newly opened virtual table cursor.
  11670.             </param>
  11671.             <returns>
  11672.             A standard SQLite return code.
  11673.             </returns>
  11674.         </member>
  11675.         <member name="M:System.Data.SQLite.SQLiteModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)">
  11676.             <summary>
  11677.             This method is called in response to the
  11678.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  11679.             </summary>
  11680.             <param name="cursor">
  11681.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  11682.             associated with the previously opened virtual table cursor to be
  11683.             used.
  11684.             </param>
  11685.             <returns>
  11686.             A standard SQLite return code.
  11687.             </returns>
  11688.         </member>
  11689.         <member name="M:System.Data.SQLite.SQLiteModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])">
  11690.             <summary>
  11691.             This method is called in response to the
  11692.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  11693.             </summary>
  11694.             <param name="cursor">
  11695.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  11696.             associated with the previously opened virtual table cursor to be
  11697.             used.
  11698.             </param>
  11699.             <param name="indexNumber">
  11700.             Number used to help identify the selected index.
  11701.             </param>
  11702.             <param name="indexString">
  11703.             String used to help identify the selected index.
  11704.             </param>
  11705.             <param name="values">
  11706.             The values corresponding to each column in the selected index.
  11707.             </param>
  11708.             <returns>
  11709.             A standard SQLite return code.
  11710.             </returns>
  11711.         </member>
  11712.         <member name="M:System.Data.SQLite.SQLiteModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)">
  11713.             <summary>
  11714.             This method is called in response to the
  11715.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  11716.             </summary>
  11717.             <param name="cursor">
  11718.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  11719.             associated with the previously opened virtual table cursor to be
  11720.             used.
  11721.             </param>
  11722.             <returns>
  11723.             A standard SQLite return code.
  11724.             </returns>
  11725.         </member>
  11726.         <member name="M:System.Data.SQLite.SQLiteModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)">
  11727.             <summary>
  11728.             This method is called in response to the
  11729.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  11730.             </summary>
  11731.             <param name="cursor">
  11732.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  11733.             associated with the previously opened virtual table cursor to be
  11734.             used.
  11735.             </param>
  11736.             <returns>
  11737.             Non-zero if no more rows are available; zero otherwise.
  11738.             </returns>
  11739.         </member>
  11740.         <member name="M:System.Data.SQLite.SQLiteModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)">
  11741.             <summary>
  11742.             This method is called in response to the
  11743.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  11744.             </summary>
  11745.             <param name="cursor">
  11746.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  11747.             associated with the previously opened virtual table cursor to be
  11748.             used.
  11749.             </param>
  11750.             <param name="context">
  11751.             The <see cref="T:System.Data.SQLite.SQLiteContext"/> object instance to be used for
  11752.             returning the specified column value to the SQLite core library.
  11753.             </param>
  11754.             <param name="index">
  11755.             The zero-based index corresponding to the column containing the
  11756.             value to be returned.
  11757.             </param>
  11758.             <returns>
  11759.             A standard SQLite return code.
  11760.             </returns>
  11761.         </member>
  11762.         <member name="M:System.Data.SQLite.SQLiteModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)">
  11763.             <summary>
  11764.             This method is called in response to the
  11765.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  11766.             </summary>
  11767.             <param name="cursor">
  11768.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  11769.             associated with the previously opened virtual table cursor to be
  11770.             used.
  11771.             </param>
  11772.             <param name="rowId">
  11773.             Upon success, this parameter must be modified to contain the unique
  11774.             integer row identifier for the current row for the specified cursor.
  11775.             </param>
  11776.             <returns>
  11777.             A standard SQLite return code.
  11778.             </returns>
  11779.         </member>
  11780.         <member name="M:System.Data.SQLite.SQLiteModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)">
  11781.             <summary>
  11782.             This method is called in response to the
  11783.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  11784.             </summary>
  11785.             <param name="table">
  11786.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11787.             with this virtual table.
  11788.             </param>
  11789.             <param name="values">
  11790.             The array of <see cref="T:System.Data.SQLite.SQLiteValue"/> object instances containing
  11791.             the new or modified column values, if any.
  11792.             </param>
  11793.             <param name="rowId">
  11794.             Upon success, this parameter must be modified to contain the unique
  11795.             integer row identifier for the row that was inserted, if any.
  11796.             </param>
  11797.             <returns>
  11798.             A standard SQLite return code.
  11799.             </returns>
  11800.         </member>
  11801.         <member name="M:System.Data.SQLite.SQLiteModule.Begin(System.Data.SQLite.SQLiteVirtualTable)">
  11802.             <summary>
  11803.             This method is called in response to the
  11804.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  11805.             </summary>
  11806.             <param name="table">
  11807.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11808.             with this virtual table.
  11809.             </param>
  11810.             <returns>
  11811.             A standard SQLite return code.
  11812.             </returns>
  11813.         </member>
  11814.         <member name="M:System.Data.SQLite.SQLiteModule.Sync(System.Data.SQLite.SQLiteVirtualTable)">
  11815.             <summary>
  11816.             This method is called in response to the
  11817.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  11818.             </summary>
  11819.             <param name="table">
  11820.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11821.             with this virtual table.
  11822.             </param>
  11823.             <returns>
  11824.             A standard SQLite return code.
  11825.             </returns>
  11826.         </member>
  11827.         <member name="M:System.Data.SQLite.SQLiteModule.Commit(System.Data.SQLite.SQLiteVirtualTable)">
  11828.             <summary>
  11829.             This method is called in response to the
  11830.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  11831.             </summary>
  11832.             <param name="table">
  11833.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11834.             with this virtual table.
  11835.             </param>
  11836.             <returns>
  11837.             A standard SQLite return code.
  11838.             </returns>
  11839.         </member>
  11840.         <member name="M:System.Data.SQLite.SQLiteModule.Rollback(System.Data.SQLite.SQLiteVirtualTable)">
  11841.             <summary>
  11842.             This method is called in response to the
  11843.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  11844.             </summary>
  11845.             <param name="table">
  11846.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11847.             with this virtual table.
  11848.             </param>
  11849.             <returns>
  11850.             A standard SQLite return code.
  11851.             </returns>
  11852.         </member>
  11853.         <member name="M:System.Data.SQLite.SQLiteModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)">
  11854.             <summary>
  11855.             This method is called in response to the
  11856.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  11857.             </summary>
  11858.             <param name="table">
  11859.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11860.             with this virtual table.
  11861.             </param>
  11862.             <param name="argumentCount">
  11863.             The number of arguments to the function being sought.
  11864.             </param>
  11865.             <param name="name">
  11866.             The name of the function being sought.
  11867.             </param>
  11868.             <param name="function">
  11869.             Upon success, this parameter must be modified to contain the
  11870.             <see cref="T:System.Data.SQLite.SQLiteFunction"/> object instance responsible for
  11871.             implementing the specified function.
  11872.             </param>
  11873.             <param name="pClientData">
  11874.             Upon success, this parameter must be modified to contain the
  11875.             native user-data pointer associated with
  11876.             <paramref name="function"/>.
  11877.             </param>
  11878.             <returns>
  11879.             Non-zero if the specified function was found; zero otherwise.
  11880.             </returns>
  11881.         </member>
  11882.         <member name="M:System.Data.SQLite.SQLiteModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)">
  11883.             <summary>
  11884.             This method is called in response to the
  11885.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  11886.             </summary>
  11887.             <param name="table">
  11888.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11889.             with this virtual table.
  11890.             </param>
  11891.             <param name="newName">
  11892.             The new name for the virtual table.
  11893.             </param>
  11894.             <returns>
  11895.             A standard SQLite return code.
  11896.             </returns>
  11897.         </member>
  11898.         <member name="M:System.Data.SQLite.SQLiteModule.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  11899.             <summary>
  11900.             This method is called in response to the
  11901.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  11902.             </summary>
  11903.             <param name="table">
  11904.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11905.             with this virtual table.
  11906.             </param>
  11907.             <param name="savepoint">
  11908.             This is an integer identifier under which the the current state of
  11909.             the virtual table should be saved.
  11910.             </param>
  11911.             <returns>
  11912.             A standard SQLite return code.
  11913.             </returns>
  11914.         </member>
  11915.         <member name="M:System.Data.SQLite.SQLiteModule.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  11916.             <summary>
  11917.             This method is called in response to the
  11918.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  11919.             </summary>
  11920.             <param name="table">
  11921.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11922.             with this virtual table.
  11923.             </param>
  11924.             <param name="savepoint">
  11925.             This is an integer used to indicate that any saved states with an
  11926.             identifier greater than or equal to this should be deleted by the
  11927.             virtual table.
  11928.             </param>
  11929.             <returns>
  11930.             A standard SQLite return code.
  11931.             </returns>
  11932.         </member>
  11933.         <member name="M:System.Data.SQLite.SQLiteModule.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  11934.             <summary>
  11935.             This method is called in response to the
  11936.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  11937.             </summary>
  11938.             <param name="table">
  11939.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  11940.             with this virtual table.
  11941.             </param>
  11942.             <param name="savepoint">
  11943.             This is an integer identifier used to specify a specific saved
  11944.             state for the virtual table for it to restore itself back to, which
  11945.             should also have the effect of deleting all saved states with an
  11946.             integer identifier greater than this one.
  11947.             </param>
  11948.             <returns>
  11949.             A standard SQLite return code.
  11950.             </returns>
  11951.         </member>
  11952.         <member name="M:System.Data.SQLite.SQLiteModule.Dispose">
  11953.             <summary>
  11954.             Disposes of this object instance.
  11955.             </summary>
  11956.         </member>
  11957.         <member name="M:System.Data.SQLite.SQLiteModule.CheckDisposed">
  11958.             <summary>
  11959.             Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  11960.             instance has been disposed.
  11961.             </summary>
  11962.         </member>
  11963.         <member name="M:System.Data.SQLite.SQLiteModule.Dispose(System.Boolean)">
  11964.             <summary>
  11965.             Disposes of this object instance.
  11966.             </summary>
  11967.             <param name="disposing">
  11968.             Non-zero if this method is being called from the
  11969.             <see cref="M:System.Data.SQLite.SQLiteModule.Dispose"/> method.  Zero if this method is being
  11970.             called from the finalizer.
  11971.             </param>
  11972.         </member>
  11973.         <member name="M:System.Data.SQLite.SQLiteModule.Finalize">
  11974.             <summary>
  11975.             Finalizes this object instance.
  11976.             </summary>
  11977.         </member>
  11978.         <member name="P:System.Data.SQLite.SQLiteModule.LogErrorsNoThrow">
  11979.             <summary>
  11980.             Returns or sets a boolean value indicating whether virtual table
  11981.             errors should be logged using the <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  11982.             </summary>
  11983.         </member>
  11984.         <member name="P:System.Data.SQLite.SQLiteModule.LogExceptionsNoThrow">
  11985.             <summary>
  11986.             Returns or sets a boolean value indicating whether exceptions
  11987.             caught in the
  11988.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method,
  11989.             the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method,
  11990.             the <see cref="M:System.Data.SQLite.SQLiteModule.SetTableError(System.IntPtr,System.String)"/> method,
  11991.             the <see cref="M:System.Data.SQLite.SQLiteModule.SetTableError(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method,
  11992.             and the <see cref="M:System.Data.SQLite.SQLiteModule.Dispose"/> method should be logged using the
  11993.             <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  11994.             </summary>
  11995.         </member>
  11996.         <member name="P:System.Data.SQLite.SQLiteModule.LogErrors">
  11997.             <summary>
  11998.             Returns or sets a boolean value indicating whether virtual table
  11999.             errors should be logged using the <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  12000.             </summary>
  12001.         </member>
  12002.         <member name="P:System.Data.SQLite.SQLiteModule.LogExceptions">
  12003.             <summary>
  12004.             Returns or sets a boolean value indicating whether exceptions
  12005.             caught in the
  12006.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method,
  12007.             <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method, and the
  12008.             <see cref="M:System.Data.SQLite.SQLiteModule.Dispose"/> method should be logged using the
  12009.             <see cref="T:System.Data.SQLite.SQLiteLog"/> class.
  12010.             </summary>
  12011.         </member>
  12012.         <member name="P:System.Data.SQLite.SQLiteModule.Declared">
  12013.             <summary>
  12014.             Returns non-zero if the schema for the virtual table has been
  12015.             declared.
  12016.             </summary>
  12017.         </member>
  12018.         <member name="P:System.Data.SQLite.SQLiteModule.Name">
  12019.             <summary>
  12020.             Returns the name of the module as it was registered with the SQLite
  12021.             core library.
  12022.             </summary>
  12023.         </member>
  12024.         <member name="T:System.Data.SQLite.SQLiteModule.SQLiteNativeModule">
  12025.             <summary>
  12026.             This class implements the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/>
  12027.             interface by forwarding those method calls to the
  12028.             <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance it contains.  If the
  12029.             contained <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance is null, all
  12030.             the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/> methods simply generate an
  12031.             error.
  12032.             </summary>
  12033.         </member>
  12034.         <member name="F:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.DefaultLogErrors">
  12035.             <summary>
  12036.             This is the value that is always used for the "logErrors"
  12037.             parameter to the various static error handling methods provided
  12038.             by the <see cref="T:System.Data.SQLite.SQLiteModule"/> class.
  12039.             </summary>
  12040.         </member>
  12041.         <member name="F:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.DefaultLogExceptions">
  12042.             <summary>
  12043.             This is the value that is always used for the "logExceptions"
  12044.             parameter to the various static error handling methods provided
  12045.             by the <see cref="T:System.Data.SQLite.SQLiteModule"/> class.
  12046.             </summary>
  12047.         </member>
  12048.         <member name="F:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.ModuleNotAvailableErrorMessage">
  12049.             <summary>
  12050.             This is the error message text used when the contained
  12051.             <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance is not available
  12052.             for any reason.
  12053.             </summary>
  12054.         </member>
  12055.         <member name="F:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.module">
  12056.             <summary>
  12057.             The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance used to provide
  12058.             an implementation of the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/>
  12059.             interface.
  12060.             </summary>
  12061.         </member>
  12062.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.#ctor(System.Data.SQLite.SQLiteModule)">
  12063.             <summary>
  12064.             Constructs an instance of this class.
  12065.             </summary>
  12066.             <param name="module">
  12067.             The <see cref="T:System.Data.SQLite.SQLiteModule"/> object instance used to provide
  12068.             an implementation of the <see cref="T:System.Data.SQLite.ISQLiteNativeModule"/>
  12069.             interface.
  12070.             </param>
  12071.         </member>
  12072.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.ModuleNotAvailableTableError(System.IntPtr)">
  12073.             <summary>
  12074.             Sets the table error message to one that indicates the native
  12075.             module implementation is not available.
  12076.             </summary>
  12077.             <param name="pVtab">
  12078.             The native pointer to the sqlite3_vtab derived structure.
  12079.             </param>
  12080.             <returns>
  12081.             The value of <see cref="F:System.Data.SQLite.SQLiteErrorCode.Error"/>.
  12082.             </returns>
  12083.         </member>
  12084.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.ModuleNotAvailableCursorError(System.IntPtr)">
  12085.             <summary>
  12086.             Sets the table error message to one that indicates the native
  12087.             module implementation is not available.
  12088.             </summary>
  12089.             <param name="pCursor">
  12090.             The native pointer to the sqlite3_vtab_cursor derived
  12091.             structure.
  12092.             </param>
  12093.             <returns>
  12094.             The value of <see cref="F:System.Data.SQLite.SQLiteErrorCode.Error"/>.
  12095.             </returns>
  12096.         </member>
  12097.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  12098.             <summary>
  12099.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12100.             </summary>
  12101.             <param name="pDb">
  12102.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12103.             </param>
  12104.             <param name="pAux">
  12105.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12106.             </param>
  12107.             <param name="argc">
  12108.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12109.             </param>
  12110.             <param name="argv">
  12111.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12112.             </param>
  12113.             <param name="pVtab">
  12114.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12115.             </param>
  12116.             <param name="pError">
  12117.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12118.             </param>
  12119.             <returns>
  12120.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCreate(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12121.             </returns>
  12122.         </member>
  12123.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)">
  12124.             <summary>
  12125.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12126.             </summary>
  12127.             <param name="pDb">
  12128.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12129.             </param>
  12130.             <param name="pAux">
  12131.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12132.             </param>
  12133.             <param name="argc">
  12134.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12135.             </param>
  12136.             <param name="argv">
  12137.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12138.             </param>
  12139.             <param name="pVtab">
  12140.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12141.             </param>
  12142.             <param name="pError">
  12143.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12144.             </param>
  12145.             <returns>
  12146.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xConnect(System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr@,System.IntPtr@)"/> method.
  12147.             </returns>
  12148.         </member>
  12149.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)">
  12150.             <summary>
  12151.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  12152.             </summary>
  12153.             <param name="pVtab">
  12154.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  12155.             </param>
  12156.             <param name="pIndex">
  12157.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  12158.             </param>
  12159.             <returns>
  12160.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBestIndex(System.IntPtr,System.IntPtr)"/> method.
  12161.             </returns>
  12162.         </member>
  12163.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xDisconnect(System.IntPtr)">
  12164.             <summary>
  12165.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  12166.             </summary>
  12167.             <param name="pVtab">
  12168.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  12169.             </param>
  12170.             <returns>
  12171.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDisconnect(System.IntPtr)"/> method.
  12172.             </returns>
  12173.         </member>
  12174.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xDestroy(System.IntPtr)">
  12175.             <summary>
  12176.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  12177.             </summary>
  12178.             <param name="pVtab">
  12179.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  12180.             </param>
  12181.             <returns>
  12182.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xDestroy(System.IntPtr)"/> method.
  12183.             </returns>
  12184.         </member>
  12185.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)">
  12186.             <summary>
  12187.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  12188.             </summary>
  12189.             <param name="pVtab">
  12190.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  12191.             </param>
  12192.             <param name="pCursor">
  12193.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  12194.             </param>
  12195.             <returns>
  12196.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xOpen(System.IntPtr,System.IntPtr@)"/> method.
  12197.             </returns>
  12198.         </member>
  12199.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xClose(System.IntPtr)">
  12200.             <summary>
  12201.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  12202.             </summary>
  12203.             <param name="pCursor">
  12204.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  12205.             </param>
  12206.             <returns>
  12207.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xClose(System.IntPtr)"/> method.
  12208.             </returns>
  12209.         </member>
  12210.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)">
  12211.             <summary>
  12212.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12213.             </summary>
  12214.             <param name="pCursor">
  12215.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12216.             </param>
  12217.             <param name="idxNum">
  12218.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12219.             </param>
  12220.             <param name="idxStr">
  12221.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12222.             </param>
  12223.             <param name="argc">
  12224.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12225.             </param>
  12226.             <param name="argv">
  12227.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12228.             </param>
  12229.             <returns>
  12230.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFilter(System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr)"/> method.
  12231.             </returns>
  12232.         </member>
  12233.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xNext(System.IntPtr)">
  12234.             <summary>
  12235.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  12236.             </summary>
  12237.             <param name="pCursor">
  12238.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  12239.             </param>
  12240.             <returns>
  12241.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xNext(System.IntPtr)"/> method.
  12242.             </returns>
  12243.         </member>
  12244.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xEof(System.IntPtr)">
  12245.             <summary>
  12246.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  12247.             </summary>
  12248.             <param name="pCursor">
  12249.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  12250.             </param>
  12251.             <returns>
  12252.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xEof(System.IntPtr)"/> method.
  12253.             </returns>
  12254.         </member>
  12255.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)">
  12256.             <summary>
  12257.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  12258.             </summary>
  12259.             <param name="pCursor">
  12260.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  12261.             </param>
  12262.             <param name="pContext">
  12263.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  12264.             </param>
  12265.             <param name="index">
  12266.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  12267.             </param>
  12268.             <returns>
  12269.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xColumn(System.IntPtr,System.IntPtr,System.Int32)"/> method.
  12270.             </returns>
  12271.         </member>
  12272.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)">
  12273.             <summary>
  12274.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  12275.             </summary>
  12276.             <param name="pCursor">
  12277.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  12278.             </param>
  12279.             <param name="rowId">
  12280.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  12281.             </param>
  12282.             <returns>
  12283.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRowId(System.IntPtr,System.Int64@)"/> method.
  12284.             </returns>
  12285.         </member>
  12286.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)">
  12287.             <summary>
  12288.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  12289.             </summary>
  12290.             <param name="pVtab">
  12291.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  12292.             </param>
  12293.             <param name="argc">
  12294.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  12295.             </param>
  12296.             <param name="argv">
  12297.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  12298.             </param>
  12299.             <param name="rowId">
  12300.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  12301.             </param>
  12302.             <returns>
  12303.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xUpdate(System.IntPtr,System.Int32,System.IntPtr,System.Int64@)"/> method.
  12304.             </returns>
  12305.         </member>
  12306.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xBegin(System.IntPtr)">
  12307.             <summary>
  12308.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  12309.             </summary>
  12310.             <param name="pVtab">
  12311.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  12312.             </param>
  12313.             <returns>
  12314.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xBegin(System.IntPtr)"/> method.
  12315.             </returns>
  12316.         </member>
  12317.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xSync(System.IntPtr)">
  12318.             <summary>
  12319.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  12320.             </summary>
  12321.             <param name="pVtab">
  12322.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  12323.             </param>
  12324.             <returns>
  12325.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSync(System.IntPtr)"/> method.
  12326.             </returns>
  12327.         </member>
  12328.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xCommit(System.IntPtr)">
  12329.             <summary>
  12330.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  12331.             </summary>
  12332.             <param name="pVtab">
  12333.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  12334.             </param>
  12335.             <returns>
  12336.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xCommit(System.IntPtr)"/> method.
  12337.             </returns>
  12338.         </member>
  12339.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xRollback(System.IntPtr)">
  12340.             <summary>
  12341.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  12342.             </summary>
  12343.             <param name="pVtab">
  12344.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  12345.             </param>
  12346.             <returns>
  12347.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollback(System.IntPtr)"/> method.
  12348.             </returns>
  12349.         </member>
  12350.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)">
  12351.             <summary>
  12352.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12353.             </summary>
  12354.             <param name="pVtab">
  12355.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12356.             </param>
  12357.             <param name="nArg">
  12358.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12359.             </param>
  12360.             <param name="zName">
  12361.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12362.             </param>
  12363.             <param name="callback">
  12364.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12365.             </param>
  12366.             <param name="pClientData">
  12367.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12368.             </param>
  12369.             <returns>
  12370.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xFindFunction(System.IntPtr,System.Int32,System.IntPtr,System.Data.SQLite.SQLiteCallback@,System.IntPtr@)"/> method.
  12371.             </returns>
  12372.         </member>
  12373.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)">
  12374.             <summary>
  12375.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  12376.             </summary>
  12377.             <param name="pVtab">
  12378.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  12379.             </param>
  12380.             <param name="zNew">
  12381.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  12382.             </param>
  12383.             <returns>
  12384.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRename(System.IntPtr,System.IntPtr)"/> method.
  12385.             </returns>
  12386.         </member>
  12387.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)">
  12388.             <summary>
  12389.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  12390.             </summary>
  12391.             <param name="pVtab">
  12392.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  12393.             </param>
  12394.             <param name="iSavepoint">
  12395.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  12396.             </param>
  12397.             <returns>
  12398.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xSavepoint(System.IntPtr,System.Int32)"/> method.
  12399.             </returns>
  12400.         </member>
  12401.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xRelease(System.IntPtr,System.Int32)">
  12402.             <summary>
  12403.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  12404.             </summary>
  12405.             <param name="pVtab">
  12406.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  12407.             </param>
  12408.             <param name="iSavepoint">
  12409.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  12410.             </param>
  12411.             <returns>
  12412.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRelease(System.IntPtr,System.Int32)"/> method.
  12413.             </returns>
  12414.         </member>
  12415.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)">
  12416.             <summary>
  12417.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  12418.             </summary>
  12419.             <param name="pVtab">
  12420.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  12421.             </param>
  12422.             <param name="iSavepoint">
  12423.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  12424.             </param>
  12425.             <returns>
  12426.             See the <see cref="M:System.Data.SQLite.ISQLiteNativeModule.xRollbackTo(System.IntPtr,System.Int32)"/> method.
  12427.             </returns>
  12428.         </member>
  12429.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.Dispose">
  12430.             <summary>
  12431.             Disposes of this object instance.
  12432.             </summary>
  12433.         </member>
  12434.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.CheckDisposed">
  12435.             <summary>
  12436.             Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  12437.             instance has been disposed.
  12438.             </summary>
  12439.         </member>
  12440.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.Dispose(System.Boolean)">
  12441.             <summary>
  12442.             Disposes of this object instance.
  12443.             </summary>
  12444.             <param name="disposing">
  12445.             Non-zero if this method is being called from the
  12446.             <see cref="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.Dispose"/> method.  Zero if this method is being
  12447.             called from the finalizer.
  12448.             </param>
  12449.         </member>
  12450.         <member name="M:System.Data.SQLite.SQLiteModule.SQLiteNativeModule.Finalize">
  12451.             <summary>
  12452.             Finalizes this object instance.
  12453.             </summary>
  12454.         </member>
  12455.         <member name="T:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator">
  12456.             <summary>
  12457.             This class represents a virtual table cursor to be used with the
  12458.             <see cref="T:System.Data.SQLite.SQLiteModuleEnumerable"/> class.  It is not sealed and may
  12459.             be used as the base class for any user-defined virtual table cursor
  12460.             class that wraps an <see cref="T:System.Collections.IEnumerator"/> object instance.
  12461.             </summary>
  12462.         </member>
  12463.         <member name="F:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.enumerator">
  12464.             <summary>
  12465.             The <see cref="T:System.Collections.IEnumerator"/> instance provided when this cursor
  12466.             was created.
  12467.             </summary>
  12468.         </member>
  12469.         <member name="F:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.endOfEnumerator">
  12470.             <summary>
  12471.             This value will be non-zero if false has been returned from the
  12472.             <see cref="M:System.Collections.IEnumerator.MoveNext"/> method.
  12473.             </summary>
  12474.         </member>
  12475.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.#ctor(System.Data.SQLite.SQLiteVirtualTable,System.Collections.IEnumerator)">
  12476.             <summary>
  12477.             Constructs an instance of this class.
  12478.             </summary>
  12479.             <param name="table">
  12480.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  12481.             with this object instance.
  12482.             </param>
  12483.             <param name="enumerator">
  12484.             The <see cref="T:System.Collections.IEnumerator"/> instance to expose as a virtual
  12485.             table cursor.
  12486.             </param>
  12487.         </member>
  12488.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.MoveNext">
  12489.             <summary>
  12490.             Advances to the next row of the virtual table cursor using the
  12491.             <see cref="M:System.Collections.IEnumerator.MoveNext"/> method of the
  12492.             <see cref="T:System.Collections.IEnumerator"/> object instance.
  12493.             </summary>
  12494.             <returns>
  12495.             Non-zero if the current row is valid; zero otherwise.  If zero is
  12496.             returned, no further rows are available.
  12497.             </returns>
  12498.         </member>
  12499.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.Reset">
  12500.             <summary>
  12501.             Resets the virtual table cursor position, also invalidating the
  12502.             current row, using the <see cref="M:System.Collections.IEnumerator.Reset"/> method of
  12503.             the <see cref="T:System.Collections.IEnumerator"/> object instance.
  12504.             </summary>
  12505.         </member>
  12506.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.Close">
  12507.             <summary>
  12508.             Closes the virtual table cursor.  This method must not throw any
  12509.             exceptions.
  12510.             </summary>
  12511.         </member>
  12512.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.CheckClosed">
  12513.             <summary>
  12514.             Throws an <see cref="T:System.InvalidOperationException"/> if the virtual
  12515.             table cursor has been closed.
  12516.             </summary>
  12517.         </member>
  12518.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.CheckDisposed">
  12519.             <summary>
  12520.             Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  12521.             instance has been disposed.
  12522.             </summary>
  12523.         </member>
  12524.         <member name="M:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.Dispose(System.Boolean)">
  12525.             <summary>
  12526.             Disposes of this object instance.
  12527.             </summary>
  12528.             <param name="disposing">
  12529.             Non-zero if this method is being called from the
  12530.             <see cref="M:System.IDisposable.Dispose"/> method.  Zero if this method is
  12531.             being called from the finalizer.
  12532.             </param>
  12533.         </member>
  12534.         <member name="P:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.Current">
  12535.             <summary>
  12536.             Returns the value for the current row of the virtual table cursor
  12537.             using the <see cref="P:System.Collections.IEnumerator.Current"/> property of the
  12538.             <see cref="T:System.Collections.IEnumerator"/> object instance.
  12539.             </summary>
  12540.         </member>
  12541.         <member name="P:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.EndOfEnumerator">
  12542.             <summary>
  12543.             Returns non-zero if the end of the virtual table cursor has been
  12544.             seen (i.e. no more rows are available, including the current one).
  12545.             </summary>
  12546.         </member>
  12547.         <member name="P:System.Data.SQLite.SQLiteVirtualTableCursorEnumerator.IsOpen">
  12548.             <summary>
  12549.             Returns non-zero if the virtual table cursor is open.
  12550.             </summary>
  12551.         </member>
  12552.         <member name="T:System.Data.SQLite.SQLiteModuleEnumerable">
  12553.              <summary>
  12554.              This class implements a virtual table module that exposes an
  12555.              <see cref="T:System.Collections.IEnumerable"/> object instance as a read-only virtual
  12556.              table.  It is not sealed and may be used as the base class for any
  12557.              user-defined virtual table class that wraps an
  12558.              <see cref="T:System.Collections.IEnumerable"/> object instance.  The following short
  12559.              example shows it being used to treat an array of strings as a table
  12560.              data source:
  12561.              <code>
  12562.                public static class Sample
  12563.                {
  12564.                  public static void Main()
  12565.                  {
  12566.                    using (SQLiteConnection connection = new SQLiteConnection(
  12567.                        "Data Source=:memory:;"))
  12568.                    {
  12569.                      connection.Open();
  12570.             
  12571.                      connection.CreateModule(new SQLiteModuleEnumerable(
  12572.                        "sampleModule", new string[] { "one", "two", "three" }));
  12573.             
  12574.                      using (SQLiteCommand command = connection.CreateCommand())
  12575.                      {
  12576.                        command.CommandText =
  12577.                            "CREATE VIRTUAL TABLE t1 USING sampleModule;";
  12578.             
  12579.                        command.ExecuteNonQuery();
  12580.                      }
  12581.             
  12582.                      using (SQLiteCommand command = connection.CreateCommand())
  12583.                      {
  12584.                        command.CommandText = "SELECT * FROM t1;";
  12585.             
  12586.                        using (SQLiteDataReader dataReader = command.ExecuteReader())
  12587.                        {
  12588.                          while (dataReader.Read())
  12589.                            Console.WriteLine(dataReader[0].ToString());
  12590.                        }
  12591.                      }
  12592.             
  12593.                      connection.Close();
  12594.                    }
  12595.                  }
  12596.                }
  12597.              </code>
  12598.              </summary>
  12599.         </member>
  12600.         <member name="T:System.Data.SQLite.SQLiteModuleNoop">
  12601.             <summary>
  12602.             This class implements a virtual table module that does nothing by
  12603.             providing "empty" implementations for all of the
  12604.             <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface methods.  The result
  12605.             codes returned by these "empty" method implementations may be
  12606.             controlled on a per-method basis by using and/or overriding the
  12607.             <see cref="M:System.Data.SQLite.SQLiteModuleNoop.GetDefaultResultCode"/>,
  12608.             <see cref="M:System.Data.SQLite.SQLiteModuleNoop.ResultCodeToEofResult(System.Data.SQLite.SQLiteErrorCode)"/>,
  12609.             <see cref="M:System.Data.SQLite.SQLiteModuleNoop.ResultCodeToFindFunctionResult(System.Data.SQLite.SQLiteErrorCode)"/>,
  12610.             <see cref="M:System.Data.SQLite.SQLiteModuleNoop.GetMethodResultCode(System.String)"/>, and
  12611.             <see cref="M:System.Data.SQLite.SQLiteModuleNoop.SetMethodResultCode(System.String,System.Data.SQLite.SQLiteErrorCode)"/> methods from within derived classes.
  12612.             </summary>
  12613.         </member>
  12614.         <member name="F:System.Data.SQLite.SQLiteModuleNoop.resultCodes">
  12615.             <summary>
  12616.             This field is used to store the <see cref="T:System.Data.SQLite.SQLiteErrorCode"/>
  12617.             values to return, on a per-method basis, for all methods that are
  12618.             part of the <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface.
  12619.             </summary>
  12620.         </member>
  12621.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.#ctor(System.String)">
  12622.             <summary>
  12623.             Constructs an instance of this class.
  12624.             </summary>
  12625.             <param name="name">
  12626.             The name of the module.  This parameter cannot be null.
  12627.             </param>
  12628.         </member>
  12629.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.GetDefaultResultCode">
  12630.             <summary>
  12631.             Determines the default <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value to be
  12632.             returned by methods of the <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/>
  12633.             interface that lack an overridden implementation in all classes
  12634.             derived from the <see cref="T:System.Data.SQLite.SQLiteModuleNoop"/> class.
  12635.             </summary>
  12636.             <returns>
  12637.             The <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value that should be returned
  12638.             by all <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface methods unless
  12639.             a more specific result code has been set for that interface method.
  12640.             </returns>
  12641.         </member>
  12642.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.ResultCodeToEofResult(System.Data.SQLite.SQLiteErrorCode)">
  12643.             <summary>
  12644.             Converts a <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value into a boolean
  12645.             return value for use with the
  12646.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12647.             </summary>
  12648.             <param name="resultCode">
  12649.             The <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value to convert.
  12650.             </param>
  12651.             <returns>
  12652.             The <see cref="T:System.Boolean"/> value.
  12653.             </returns>
  12654.         </member>
  12655.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.ResultCodeToFindFunctionResult(System.Data.SQLite.SQLiteErrorCode)">
  12656.             <summary>
  12657.             Converts a <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value into a boolean
  12658.             return value for use with the
  12659.             <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  12660.             </summary>
  12661.             <param name="resultCode">
  12662.             The <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value to convert.
  12663.             </param>
  12664.             <returns>
  12665.             The <see cref="T:System.Boolean"/> value.
  12666.             </returns>
  12667.         </member>
  12668.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.GetMethodResultCode(System.String)">
  12669.             <summary>
  12670.             Determines the <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value that should be
  12671.             returned by the specified <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/>
  12672.             interface method if it lack an overridden implementation.  If no
  12673.             specific <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value is available (or set)
  12674.             for the specified method, the <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value
  12675.             returned by the <see cref="M:System.Data.SQLite.SQLiteModuleNoop.GetDefaultResultCode"/> method will be
  12676.             returned instead.
  12677.             </summary>
  12678.             <param name="methodName">
  12679.             The name of the method.  Currently, this method must be part of
  12680.             the <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface.
  12681.             </param>
  12682.             <returns>
  12683.             The <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value that should be returned
  12684.             by the <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface method.
  12685.             </returns>
  12686.         </member>
  12687.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.SetMethodResultCode(System.String,System.Data.SQLite.SQLiteErrorCode)">
  12688.             <summary>
  12689.             Sets the <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value that should be
  12690.             returned by the specified <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/>
  12691.             interface method if it lack an overridden implementation.
  12692.             </summary>
  12693.             <param name="methodName">
  12694.             The name of the method.  Currently, this method must be part of
  12695.             the <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface.
  12696.             </param>
  12697.             <param name="resultCode">
  12698.             The <see cref="T:System.Data.SQLite.SQLiteErrorCode"/> value that should be returned
  12699.             by the <see cref="T:System.Data.SQLite.ISQLiteManagedModule"/> interface method.
  12700.             </param>
  12701.             <returns>
  12702.             Non-zero upon success.
  12703.             </returns>
  12704.         </member>
  12705.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  12706.             <summary>
  12707.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12708.             </summary>
  12709.             <param name="connection">
  12710.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12711.             </param>
  12712.             <param name="pClientData">
  12713.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12714.             </param>
  12715.             <param name="arguments">
  12716.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12717.             </param>
  12718.             <param name="table">
  12719.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12720.             </param>
  12721.             <param name="error">
  12722.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12723.             </param>
  12724.             <returns>
  12725.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12726.             </returns>
  12727.         </member>
  12728.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  12729.             <summary>
  12730.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12731.             </summary>
  12732.             <param name="connection">
  12733.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12734.             </param>
  12735.             <param name="pClientData">
  12736.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12737.             </param>
  12738.             <param name="arguments">
  12739.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12740.             </param>
  12741.             <param name="table">
  12742.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12743.             </param>
  12744.             <param name="error">
  12745.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12746.             </param>
  12747.             <returns>
  12748.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  12749.             </returns>
  12750.         </member>
  12751.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)">
  12752.             <summary>
  12753.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  12754.             </summary>
  12755.             <param name="table">
  12756.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  12757.             </param>
  12758.             <param name="index">
  12759.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  12760.             </param>
  12761.             <returns>
  12762.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  12763.             </returns>
  12764.         </member>
  12765.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Disconnect(System.Data.SQLite.SQLiteVirtualTable)">
  12766.             <summary>
  12767.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12768.             </summary>
  12769.             <param name="table">
  12770.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12771.             </param>
  12772.             <returns>
  12773.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12774.             </returns>
  12775.         </member>
  12776.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Destroy(System.Data.SQLite.SQLiteVirtualTable)">
  12777.             <summary>
  12778.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12779.             </summary>
  12780.             <param name="table">
  12781.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12782.             </param>
  12783.             <returns>
  12784.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12785.             </returns>
  12786.         </member>
  12787.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)">
  12788.             <summary>
  12789.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  12790.             </summary>
  12791.             <param name="table">
  12792.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  12793.             </param>
  12794.             <param name="cursor">
  12795.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  12796.             </param>
  12797.             <returns>
  12798.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  12799.             </returns>
  12800.         </member>
  12801.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Close(System.Data.SQLite.SQLiteVirtualTableCursor)">
  12802.             <summary>
  12803.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12804.             </summary>
  12805.             <param name="cursor">
  12806.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12807.             </param>
  12808.             <returns>
  12809.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12810.             </returns>
  12811.         </member>
  12812.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])">
  12813.             <summary>
  12814.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  12815.             </summary>
  12816.             <param name="cursor">
  12817.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  12818.             </param>
  12819.             <param name="indexNumber">
  12820.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  12821.             </param>
  12822.             <param name="indexString">
  12823.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  12824.             </param>
  12825.             <param name="values">
  12826.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  12827.             </param>
  12828.             <returns>
  12829.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  12830.             </returns>
  12831.         </member>
  12832.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Next(System.Data.SQLite.SQLiteVirtualTableCursor)">
  12833.             <summary>
  12834.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12835.             </summary>
  12836.             <param name="cursor">
  12837.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12838.             </param>
  12839.             <returns>
  12840.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12841.             </returns>
  12842.         </member>
  12843.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)">
  12844.             <summary>
  12845.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12846.             </summary>
  12847.             <param name="cursor">
  12848.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12849.             </param>
  12850.             <returns>
  12851.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  12852.             </returns>
  12853.         </member>
  12854.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)">
  12855.             <summary>
  12856.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  12857.             </summary>
  12858.             <param name="cursor">
  12859.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  12860.             </param>
  12861.             <param name="context">
  12862.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  12863.             </param>
  12864.             <param name="index">
  12865.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  12866.             </param>
  12867.             <returns>
  12868.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  12869.             </returns>
  12870.         </member>
  12871.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)">
  12872.             <summary>
  12873.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  12874.             </summary>
  12875.             <param name="cursor">
  12876.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  12877.             </param>
  12878.             <param name="rowId">
  12879.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  12880.             </param>
  12881.             <returns>
  12882.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  12883.             </returns>
  12884.         </member>
  12885.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)">
  12886.             <summary>
  12887.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  12888.             </summary>
  12889.             <param name="table">
  12890.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  12891.             </param>
  12892.             <param name="values">
  12893.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  12894.             </param>
  12895.             <param name="rowId">
  12896.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  12897.             </param>
  12898.             <returns>
  12899.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  12900.             </returns>
  12901.         </member>
  12902.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Begin(System.Data.SQLite.SQLiteVirtualTable)">
  12903.             <summary>
  12904.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Begin(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12905.             </summary>
  12906.             <param name="table">
  12907.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Begin(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12908.             </param>
  12909.             <returns>
  12910.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Begin(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12911.             </returns>
  12912.         </member>
  12913.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Sync(System.Data.SQLite.SQLiteVirtualTable)">
  12914.             <summary>
  12915.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Sync(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12916.             </summary>
  12917.             <param name="table">
  12918.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Sync(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12919.             </param>
  12920.             <returns>
  12921.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Sync(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12922.             </returns>
  12923.         </member>
  12924.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Commit(System.Data.SQLite.SQLiteVirtualTable)">
  12925.             <summary>
  12926.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Commit(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12927.             </summary>
  12928.             <param name="table">
  12929.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Commit(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12930.             </param>
  12931.             <returns>
  12932.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Commit(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12933.             </returns>
  12934.         </member>
  12935.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Rollback(System.Data.SQLite.SQLiteVirtualTable)">
  12936.             <summary>
  12937.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rollback(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12938.             </summary>
  12939.             <param name="table">
  12940.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rollback(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12941.             </param>
  12942.             <returns>
  12943.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rollback(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  12944.             </returns>
  12945.         </member>
  12946.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)">
  12947.             <summary>
  12948.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  12949.             </summary>
  12950.             <param name="table">
  12951.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  12952.             </param>
  12953.             <param name="argumentCount">
  12954.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  12955.             </param>
  12956.             <param name="name">
  12957.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  12958.             </param>
  12959.             <param name="function">
  12960.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  12961.             </param>
  12962.             <param name="pClientData">
  12963.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  12964.             </param>
  12965.             <returns>
  12966.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.FindFunction(System.Data.SQLite.SQLiteVirtualTable,System.Int32,System.String,System.Data.SQLite.SQLiteFunction@,System.IntPtr@)"/> method.
  12967.             </returns>
  12968.         </member>
  12969.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)">
  12970.             <summary>
  12971.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  12972.             </summary>
  12973.             <param name="table">
  12974.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  12975.             </param>
  12976.             <param name="newName">
  12977.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  12978.             </param>
  12979.             <returns>
  12980.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  12981.             </returns>
  12982.         </member>
  12983.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  12984.             <summary>
  12985.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  12986.             </summary>
  12987.             <param name="table">
  12988.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  12989.             </param>
  12990.             <param name="savepoint">
  12991.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  12992.             </param>
  12993.             <returns>
  12994.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Savepoint(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  12995.             </returns>
  12996.         </member>
  12997.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  12998.             <summary>
  12999.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13000.             </summary>
  13001.             <param name="table">
  13002.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13003.             </param>
  13004.             <param name="savepoint">
  13005.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13006.             </param>
  13007.             <returns>
  13008.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Release(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13009.             </returns>
  13010.         </member>
  13011.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)">
  13012.             <summary>
  13013.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13014.             </summary>
  13015.             <param name="table">
  13016.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13017.             </param>
  13018.             <param name="savepoint">
  13019.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13020.             </param>
  13021.             <returns>
  13022.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RollbackTo(System.Data.SQLite.SQLiteVirtualTable,System.Int32)"/> method.
  13023.             </returns>
  13024.         </member>
  13025.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.CheckDisposed">
  13026.             <summary>
  13027.             Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  13028.             instance has been disposed.
  13029.             </summary>
  13030.         </member>
  13031.         <member name="M:System.Data.SQLite.SQLiteModuleNoop.Dispose(System.Boolean)">
  13032.             <summary>
  13033.             Disposes of this object instance.
  13034.             </summary>
  13035.             <param name="disposing">
  13036.             Non-zero if this method is being called from the
  13037.             <see cref="M:System.IDisposable.Dispose"/> method.  Zero if this method is
  13038.             being called from the finalizer.
  13039.             </param>
  13040.         </member>
  13041.         <member name="F:System.Data.SQLite.SQLiteModuleEnumerable.declareSql">
  13042.             <summary>
  13043.             The CREATE TABLE statement used to declare the schema for the
  13044.             virtual table.
  13045.             </summary>
  13046.         </member>
  13047.         <member name="F:System.Data.SQLite.SQLiteModuleEnumerable.enumerable">
  13048.             <summary>
  13049.             The <see cref="T:System.Collections.IEnumerable"/> instance containing the backing data
  13050.             for the virtual table.
  13051.             </summary>
  13052.         </member>
  13053.         <member name="F:System.Data.SQLite.SQLiteModuleEnumerable.objectIdentity">
  13054.             <summary>
  13055.             Non-zero if different object instances with the same value should
  13056.             generate different row identifiers, where applicable.  This has no
  13057.             effect on the .NET Compact Framework.
  13058.             </summary>
  13059.         </member>
  13060.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.#ctor(System.String,System.Collections.IEnumerable)">
  13061.             <summary>
  13062.             Constructs an instance of this class.
  13063.             </summary>
  13064.             <param name="name">
  13065.             The name of the module.  This parameter cannot be null.
  13066.             </param>
  13067.             <param name="enumerable">
  13068.             The <see cref="T:System.Collections.IEnumerable"/> instance to expose as a virtual
  13069.             table.  This parameter cannot be null.
  13070.             </param>
  13071.         </member>
  13072.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.#ctor(System.String,System.Collections.IEnumerable,System.Boolean)">
  13073.             <summary>
  13074.             Constructs an instance of this class.
  13075.             </summary>
  13076.             <param name="name">
  13077.             The name of the module.  This parameter cannot be null.
  13078.             </param>
  13079.             <param name="enumerable">
  13080.             The <see cref="T:System.Collections.IEnumerable"/> instance to expose as a virtual
  13081.             table.  This parameter cannot be null.
  13082.             </param>
  13083.             <param name="objectIdentity">
  13084.             Non-zero if different object instances with the same value should
  13085.             generate different row identifiers, where applicable.  This
  13086.             parameter has no effect on the .NET Compact Framework.
  13087.             </param>
  13088.         </member>
  13089.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.GetSqlForDeclareTable">
  13090.             <summary>
  13091.             Determines the SQL statement used to declare the virtual table.
  13092.             This method should be overridden in derived classes if they require
  13093.             a custom virtual table schema.
  13094.             </summary>
  13095.             <returns>
  13096.             The SQL statement used to declare the virtual table -OR- null if it
  13097.             cannot be determined.
  13098.             </returns>
  13099.         </member>
  13100.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.CursorTypeMismatchError(System.Data.SQLite.SQLiteVirtualTableCursor)">
  13101.             <summary>
  13102.             Sets the table error message to one that indicates the virtual
  13103.             table cursor is of the wrong type.
  13104.             </summary>
  13105.             <param name="cursor">
  13106.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance.
  13107.             </param>
  13108.             <returns>
  13109.             The value of <see cref="F:System.Data.SQLite.SQLiteErrorCode.Error"/>.
  13110.             </returns>
  13111.         </member>
  13112.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.CursorEndOfEnumeratorError(System.Data.SQLite.SQLiteVirtualTableCursor)">
  13113.             <summary>
  13114.             Sets the table error message to one that indicates the virtual
  13115.             table cursor has no current row.
  13116.             </summary>
  13117.             <param name="cursor">
  13118.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance.
  13119.             </param>
  13120.             <returns>
  13121.             The value of <see cref="F:System.Data.SQLite.SQLiteErrorCode.Error"/>.
  13122.             </returns>
  13123.         </member>
  13124.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.GetStringFromObject(System.Data.SQLite.SQLiteVirtualTableCursor,System.Object)">
  13125.             <summary>
  13126.             Determines the string to return as the column value for the object
  13127.             instance value.
  13128.             </summary>
  13129.             <param name="cursor">
  13130.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  13131.             associated with the previously opened virtual table cursor to be
  13132.             used.
  13133.             </param>
  13134.             <param name="value">
  13135.             The object instance to return a string representation for.
  13136.             </param>
  13137.             <returns>
  13138.             The string representation of the specified object instance or null
  13139.             upon failure.
  13140.             </returns>
  13141.         </member>
  13142.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.MakeRowId(System.Int32,System.Int32)">
  13143.             <summary>
  13144.             Constructs an <see cref="T:System.Int64"/> unique row identifier from two
  13145.             <see cref="T:System.Int32"/> values.  The first <see cref="T:System.Int32"/> value
  13146.             must contain the row sequence number for the current row and the
  13147.             second value must contain the hash code of the enumerator value
  13148.             for the current row.
  13149.             </summary>
  13150.             <param name="rowIndex">
  13151.             The integer row sequence number for the current row.
  13152.             </param>
  13153.             <param name="hashCode">
  13154.             The hash code of the enumerator value for the current row.
  13155.             </param>
  13156.             <returns>
  13157.             The unique row identifier or zero upon failure.
  13158.             </returns>
  13159.         </member>
  13160.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.GetRowIdFromObject(System.Data.SQLite.SQLiteVirtualTableCursor,System.Object)">
  13161.             <summary>
  13162.             Determines the unique row identifier for the current row.
  13163.             </summary>
  13164.             <param name="cursor">
  13165.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTableCursor"/> object instance
  13166.             associated with the previously opened virtual table cursor to be
  13167.             used.
  13168.             </param>
  13169.             <param name="value">
  13170.             The object instance to return a unique row identifier for.
  13171.             </param>
  13172.             <returns>
  13173.             The unique row identifier or zero upon failure.
  13174.             </returns>
  13175.         </member>
  13176.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  13177.             <summary>
  13178.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13179.             </summary>
  13180.             <param name="connection">
  13181.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13182.             </param>
  13183.             <param name="pClientData">
  13184.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13185.             </param>
  13186.             <param name="arguments">
  13187.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13188.             </param>
  13189.             <param name="table">
  13190.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13191.             </param>
  13192.             <param name="error">
  13193.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13194.             </param>
  13195.             <returns>
  13196.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Create(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13197.             </returns>
  13198.         </member>
  13199.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)">
  13200.             <summary>
  13201.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13202.             </summary>
  13203.             <param name="connection">
  13204.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13205.             </param>
  13206.             <param name="pClientData">
  13207.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13208.             </param>
  13209.             <param name="arguments">
  13210.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13211.             </param>
  13212.             <param name="table">
  13213.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13214.             </param>
  13215.             <param name="error">
  13216.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13217.             </param>
  13218.             <returns>
  13219.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Connect(System.Data.SQLite.SQLiteConnection,System.IntPtr,System.String[],System.Data.SQLite.SQLiteVirtualTable@,System.String@)"/> method.
  13220.             </returns>
  13221.         </member>
  13222.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)">
  13223.             <summary>
  13224.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  13225.             </summary>
  13226.             <param name="table">
  13227.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  13228.             </param>
  13229.             <param name="index">
  13230.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  13231.             </param>
  13232.             <returns>
  13233.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.BestIndex(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteIndex)"/> method.
  13234.             </returns>
  13235.         </member>
  13236.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Disconnect(System.Data.SQLite.SQLiteVirtualTable)">
  13237.             <summary>
  13238.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13239.             </summary>
  13240.             <param name="table">
  13241.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13242.             </param>
  13243.             <returns>
  13244.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Disconnect(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13245.             </returns>
  13246.         </member>
  13247.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Destroy(System.Data.SQLite.SQLiteVirtualTable)">
  13248.             <summary>
  13249.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13250.             </summary>
  13251.             <param name="table">
  13252.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13253.             </param>
  13254.             <returns>
  13255.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Destroy(System.Data.SQLite.SQLiteVirtualTable)"/> method.
  13256.             </returns>
  13257.         </member>
  13258.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)">
  13259.             <summary>
  13260.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13261.             </summary>
  13262.             <param name="table">
  13263.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13264.             </param>
  13265.             <param name="cursor">
  13266.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13267.             </param>
  13268.             <returns>
  13269.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13270.             </returns>
  13271.         </member>
  13272.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Close(System.Data.SQLite.SQLiteVirtualTableCursor)">
  13273.             <summary>
  13274.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13275.             </summary>
  13276.             <param name="cursor">
  13277.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13278.             </param>
  13279.             <returns>
  13280.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Close(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13281.             </returns>
  13282.         </member>
  13283.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])">
  13284.             <summary>
  13285.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13286.             </summary>
  13287.             <param name="cursor">
  13288.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13289.             </param>
  13290.             <param name="indexNumber">
  13291.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13292.             </param>
  13293.             <param name="indexString">
  13294.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13295.             </param>
  13296.             <param name="values">
  13297.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13298.             </param>
  13299.             <returns>
  13300.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Filter(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int32,System.String,System.Data.SQLite.SQLiteValue[])"/> method.
  13301.             </returns>
  13302.         </member>
  13303.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Next(System.Data.SQLite.SQLiteVirtualTableCursor)">
  13304.             <summary>
  13305.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13306.             </summary>
  13307.             <param name="cursor">
  13308.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13309.             </param>
  13310.             <returns>
  13311.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Next(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13312.             </returns>
  13313.         </member>
  13314.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)">
  13315.             <summary>
  13316.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13317.             </summary>
  13318.             <param name="cursor">
  13319.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13320.             </param>
  13321.             <returns>
  13322.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Eof(System.Data.SQLite.SQLiteVirtualTableCursor)"/> method.
  13323.             </returns>
  13324.         </member>
  13325.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)">
  13326.             <summary>
  13327.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13328.             </summary>
  13329.             <param name="cursor">
  13330.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13331.             </param>
  13332.             <param name="context">
  13333.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13334.             </param>
  13335.             <param name="index">
  13336.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13337.             </param>
  13338.             <returns>
  13339.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13340.             </returns>
  13341.         </member>
  13342.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)">
  13343.             <summary>
  13344.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  13345.             </summary>
  13346.             <param name="cursor">
  13347.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  13348.             </param>
  13349.             <param name="rowId">
  13350.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  13351.             </param>
  13352.             <returns>
  13353.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.RowId(System.Data.SQLite.SQLiteVirtualTableCursor,System.Int64@)"/> method.
  13354.             </returns>
  13355.         </member>
  13356.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)">
  13357.             <summary>
  13358.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13359.             </summary>
  13360.             <param name="table">
  13361.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13362.             </param>
  13363.             <param name="values">
  13364.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13365.             </param>
  13366.             <param name="rowId">
  13367.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13368.             </param>
  13369.             <returns>
  13370.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Update(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteValue[],System.Int64@)"/> method.
  13371.             </returns>
  13372.         </member>
  13373.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)">
  13374.             <summary>
  13375.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  13376.             </summary>
  13377.             <param name="table">
  13378.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  13379.             </param>
  13380.             <param name="newName">
  13381.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  13382.             </param>
  13383.             <returns>
  13384.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Rename(System.Data.SQLite.SQLiteVirtualTable,System.String)"/> method.
  13385.             </returns>
  13386.         </member>
  13387.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.CheckDisposed">
  13388.             <summary>
  13389.             Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  13390.             instance has been disposed.
  13391.             </summary>
  13392.         </member>
  13393.         <member name="M:System.Data.SQLite.SQLiteModuleEnumerable.Dispose(System.Boolean)">
  13394.             <summary>
  13395.             Disposes of this object instance.
  13396.             </summary>
  13397.             <param name="disposing">
  13398.             Non-zero if this method is being called from the
  13399.             <see cref="M:System.IDisposable.Dispose"/> method.  Zero if this method is
  13400.             being called from the finalizer.
  13401.             </param>
  13402.         </member>
  13403.         <member name="T:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1">
  13404.             <summary>
  13405.             This class represents a virtual table cursor to be used with the
  13406.             <see cref="T:System.Data.SQLite.SQLiteModuleEnumerable"/> class.  It is not sealed and may
  13407.             be used as the base class for any user-defined virtual table cursor
  13408.             class that wraps an <see cref="T:System.Collections.Generic.IEnumerator`1"/> object instance.
  13409.             </summary>
  13410.         </member>
  13411.         <member name="F:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1.enumerator">
  13412.             <summary>
  13413.             The <see cref="T:System.Collections.Generic.IEnumerator`1"/> instance provided when this
  13414.             cursor was created.
  13415.             </summary>
  13416.         </member>
  13417.         <member name="M:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1.#ctor(System.Data.SQLite.SQLiteVirtualTable,System.Collections.Generic.IEnumerator{`0})">
  13418.             <summary>
  13419.             Constructs an instance of this class.
  13420.             </summary>
  13421.             <param name="table">
  13422.             The <see cref="T:System.Data.SQLite.SQLiteVirtualTable"/> object instance associated
  13423.             with this object instance.
  13424.             </param>
  13425.             <param name="enumerator">
  13426.             The <see cref="T:System.Collections.Generic.IEnumerator`1"/> instance to expose as a virtual
  13427.             table cursor.
  13428.             </param>
  13429.         </member>
  13430.         <member name="M:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1.Close">
  13431.             <summary>
  13432.             Closes the virtual table cursor.  This method must not throw any
  13433.             exceptions.
  13434.             </summary>
  13435.         </member>
  13436.         <member name="M:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1.CheckDisposed">
  13437.             <summary>
  13438.             Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  13439.             instance has been disposed.
  13440.             </summary>
  13441.         </member>
  13442.         <member name="M:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1.Dispose(System.Boolean)">
  13443.             <summary>
  13444.             Disposes of this object instance.
  13445.             </summary>
  13446.             <param name="disposing">
  13447.             Non-zero if this method is being called from the
  13448.             <see cref="M:System.IDisposable.Dispose"/> method.  Zero if this method is
  13449.             being called from the finalizer.
  13450.             </param>
  13451.         </member>
  13452.         <member name="P:System.Data.SQLite.Generic.SQLiteVirtualTableCursorEnumerator`1.System#Collections#Generic#IEnumerator{T}#Current">
  13453.             <summary>
  13454.             Returns the value for the current row of the virtual table cursor
  13455.             using the <see cref="P:System.Collections.Generic.IEnumerator`1.Current"/> property of the
  13456.             <see cref="T:System.Collections.Generic.IEnumerator`1"/> object instance.
  13457.             </summary>
  13458.         </member>
  13459.         <member name="T:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1">
  13460.             <summary>
  13461.             This class implements a virtual table module that exposes an
  13462.             <see cref="T:System.Collections.Generic.IEnumerable`1"/> object instance as a read-only virtual
  13463.             table.  It is not sealed and may be used as the base class for any
  13464.             user-defined virtual table class that wraps an
  13465.             <see cref="T:System.Collections.Generic.IEnumerable`1"/> object instance.
  13466.             </summary>
  13467.         </member>
  13468.         <member name="F:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1.enumerable">
  13469.             <summary>
  13470.             The <see cref="T:System.Collections.Generic.IEnumerable`1"/> instance containing the backing
  13471.             data for the virtual table.
  13472.             </summary>
  13473.         </member>
  13474.         <member name="M:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1.#ctor(System.String,System.Collections.Generic.IEnumerable{`0})">
  13475.             <summary>
  13476.             Constructs an instance of this class.
  13477.             </summary>
  13478.             <param name="name">
  13479.             The name of the module.  This parameter cannot be null.
  13480.             </param>
  13481.             <param name="enumerable">
  13482.             The <see cref="T:System.Collections.Generic.IEnumerable`1"/> instance to expose as a virtual
  13483.             table.  This parameter cannot be null.
  13484.             </param>
  13485.         </member>
  13486.         <member name="M:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)">
  13487.             <summary>
  13488.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13489.             </summary>
  13490.             <param name="table">
  13491.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13492.             </param>
  13493.             <param name="cursor">
  13494.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13495.             </param>
  13496.             <returns>
  13497.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Open(System.Data.SQLite.SQLiteVirtualTable,System.Data.SQLite.SQLiteVirtualTableCursor@)"/> method.
  13498.             </returns>
  13499.         </member>
  13500.         <member name="M:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)">
  13501.             <summary>
  13502.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13503.             </summary>
  13504.             <param name="cursor">
  13505.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13506.             </param>
  13507.             <param name="context">
  13508.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13509.             </param>
  13510.             <param name="index">
  13511.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13512.             </param>
  13513.             <returns>
  13514.             See the <see cref="M:System.Data.SQLite.ISQLiteManagedModule.Column(System.Data.SQLite.SQLiteVirtualTableCursor,System.Data.SQLite.SQLiteContext,System.Int32)"/> method.
  13515.             </returns>
  13516.         </member>
  13517.         <member name="M:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1.CheckDisposed">
  13518.             <summary>
  13519.             Throws an <see cref="T:System.ObjectDisposedException"/> if this object
  13520.             instance has been disposed.
  13521.             </summary>
  13522.         </member>
  13523.         <member name="M:System.Data.SQLite.Generic.SQLiteModuleEnumerable`1.Dispose(System.Boolean)">
  13524.             <summary>
  13525.             Disposes of this object instance.
  13526.             </summary>
  13527.             <param name="disposing">
  13528.             Non-zero if this method is being called from the
  13529.             <see cref="M:System.IDisposable.Dispose"/> method.  Zero if this method is
  13530.             being called from the finalizer.
  13531.             </param>
  13532.         </member>
  13533.     </members>
  13534. </doc>
  13535.